diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-05-28 23:03:37 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-05-28 23:03:37 +0000 |
commit | aa3dbcde32f06544053587c7514db23280bd6c76 (patch) | |
tree | 9db6a397ace0fec298d768d1bf3b01ceeeda9120 /lisp | |
parent | f3c071dda517b5f6828e79e158c340a1f7bb8c2c (diff) | |
download | emacs-aa3dbcde32f06544053587c7514db23280bd6c76.tar.gz |
(idlwave-routines): Fix typo in docstring.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/progmodes/idlwave.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 80e85cd305f..c3c8aaabad7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-05-28 Juanma Barranquero <lekktu@gmail.com> + + * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring. + 2007-05-28 Michael Albinus <michael.albinus@gmx.de> Sync with Tramp 2.0.56. diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index 0556c87b43d..cf518b17d94 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -4342,7 +4342,7 @@ catalog \('lib).") (defvar idlwave-true-path-alist nil "Like `idlwave-path-alist', but with true filenames.") (defvar idlwave-routines nil - "Holds the combinded procedure/function/method routine-info.") + "Holds the combined procedure/function/method routine-info.") (defvar idlwave-class-alist nil "Holds the class names known to IDLWAVE.") (defvar idlwave-class-history nil @@ -4846,7 +4846,7 @@ Gets set in cached XML rinfo, or `idlw-rinfo.el'.") ;; Create a sysvar list entry from the xml parsed list. (let* ((nameblock (nth 1 xml-entry)) (name (cdr (assq 'name nameblock))) - (sysvar (substring name (progn (string-match "^ *!" name) + (sysvar (substring name (progn (string-match "^ *!" name) (match-end 0)))) (link (cdr (assq 'link nameblock))) (params (cddr xml-entry)) |