diff options
| author | Juanma Barranquero | 2006-12-11 01:38:00 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-12-11 01:38:00 +0000 |
| commit | 8c43762b49f9bf41c71e2635a4ff8fba1e6b2d5a (patch) | |
| tree | 6c5245e0818912f5ceaf0a4e33a6d0598db962b6 | |
| parent | e864595938ff3e7d0ff7dba732860e4ec0426483 (diff) | |
| download | emacs-8c43762b49f9bf41c71e2635a4ff8fba1e6b2d5a.tar.gz emacs-8c43762b49f9bf41c71e2635a4ff8fba1e6b2d5a.zip | |
(idlwave-library-path): Fix typo in docstring.
| -rw-r--r-- | lisp/progmodes/idlwave.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index f33ae35ed30..25f05b54b74 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el | |||
| @@ -427,11 +427,11 @@ t means to show all source files." | |||
| 427 | :type 'integer) | 427 | :type 'integer) |
| 428 | 428 | ||
| 429 | (defcustom idlwave-library-path nil | 429 | (defcustom idlwave-library-path nil |
| 430 | "Library path for Windows and MacOS (OS9). Not needed under Unix. | 430 | "Library path for Windows and MacOS (OS9). Not needed under UNIX. |
| 431 | When selecting the directories to scan for IDL user catalog routine | 431 | When selecting the directories to scan for IDL user catalog routine |
| 432 | info, IDLWAVE can, under UNIX, query the shell for the exact search | 432 | info, IDLWAVE can, under UNIX, query the shell for the exact search |
| 433 | path \(the value of !PATH). However, under Windows and MacOS | 433 | path \(the value of !PATH). However, under Windows and MacOS |
| 434 | (pre-OSX), the IDLWAVE shell does not work. In this case, this | 434 | \(pre-OSX), the IDLWAVE shell does not work. In this case, this |
| 435 | variable can be set to specify the paths where IDLWAVE can find PRO | 435 | variable can be set to specify the paths where IDLWAVE can find PRO |
| 436 | files. The shell will only be asked for a list of paths when this | 436 | files. The shell will only be asked for a list of paths when this |
| 437 | variable is nil. The value is a list of directories. A directory | 437 | variable is nil. The value is a list of directories. A directory |
| @@ -1595,7 +1595,7 @@ Capitalize system variables - action only | |||
| 1595 | (define-key idlwave-mode-map "\C-c\C-t" 'idlwave-find-module-this-file) | 1595 | (define-key idlwave-mode-map "\C-c\C-t" 'idlwave-find-module-this-file) |
| 1596 | (define-key idlwave-mode-map "\C-c?" 'idlwave-routine-info) | 1596 | (define-key idlwave-mode-map "\C-c?" 'idlwave-routine-info) |
| 1597 | (define-key idlwave-mode-map "\M-?" 'idlwave-context-help) | 1597 | (define-key idlwave-mode-map "\M-?" 'idlwave-context-help) |
| 1598 | (define-key idlwave-mode-map [(control meta ?\?)] | 1598 | (define-key idlwave-mode-map [(control meta ?\?)] |
| 1599 | 'idlwave-help-assistant-help-with-topic) | 1599 | 'idlwave-help-assistant-help-with-topic) |
| 1600 | ;; Pickup both forms of Esc/Meta binding | 1600 | ;; Pickup both forms of Esc/Meta binding |
| 1601 | (define-key idlwave-mode-map [(meta tab)] 'idlwave-complete) | 1601 | (define-key idlwave-mode-map [(meta tab)] 'idlwave-complete) |
| @@ -1942,7 +1942,7 @@ The main features of this mode are | |||
| 1942 | (set (make-local-variable 'parse-sexp-ignore-comments) t) | 1942 | (set (make-local-variable 'parse-sexp-ignore-comments) t) |
| 1943 | 1943 | ||
| 1944 | ;; ChangeLog | 1944 | ;; ChangeLog |
| 1945 | (set (make-local-variable 'add-log-current-defun-function) | 1945 | (set (make-local-variable 'add-log-current-defun-function) |
| 1946 | 'idlwave-current-routine-fullname) | 1946 | 'idlwave-current-routine-fullname) |
| 1947 | 1947 | ||
| 1948 | ;; Set tag table list to use IDLTAGS as file name. | 1948 | ;; Set tag table list to use IDLTAGS as file name. |
| @@ -9236,7 +9236,7 @@ Assumes that point is at the beginning of the unit as found by | |||
| 9236 | "--" | 9236 | "--" |
| 9237 | ["Info" idlwave-info t] | 9237 | ["Info" idlwave-info t] |
| 9238 | "--" | 9238 | "--" |
| 9239 | ["Help with Topic" idlwave-help-assistant-help-with-topic | 9239 | ["Help with Topic" idlwave-help-assistant-help-with-topic |
| 9240 | idlwave-help-use-assistant] | 9240 | idlwave-help-use-assistant] |
| 9241 | ["Launch IDL Help" idlwave-launch-idlhelp t]))) | 9241 | ["Launch IDL Help" idlwave-launch-idlhelp t]))) |
| 9242 | 9242 | ||