diff options
| author | Glenn Morris | 2010-11-03 00:57:43 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-11-03 00:57:43 -0700 |
| commit | 0b03a950a0486d1b93600eba3d5b3c83de297d11 (patch) | |
| tree | 4e241b0e4fbf05b0790c34f8d182432cc2742166 | |
| parent | e337e22c2400355ea9a22a8114df9c5c2b849d78 (diff) | |
| download | emacs-0b03a950a0486d1b93600eba3d5b3c83de297d11.tar.gz emacs-0b03a950a0486d1b93600eba3d5b3c83de297d11.zip | |
idlwave trivia.
* lisp/progmodes/idlwave.el (idlwave-pset): Only used on XEmacs.
(props): Remove unnecessary declaration.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/idlwave.el | 9 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 52af63f7b20..044ff60a4a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-11-03 Glenn Morris <rgm@gnu.org> | 1 | 2010-11-03 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * progmodes/idlwave.el (idlwave-pset): Only used on XEmacs. | ||
| 4 | (props): Remove unnecessary declaration. | ||
| 5 | |||
| 3 | * textmodes/ispell.el (ispell-init-process): On Emacs, always use | 6 | * textmodes/ispell.el (ispell-init-process): On Emacs, always use |
| 4 | set-process-query-on-exit-flag. | 7 | set-process-query-on-exit-flag. |
| 5 | 8 | ||
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index dc85d094810..138357e2dfc 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el | |||
| @@ -6911,9 +6911,10 @@ accumulate information on matching completions." | |||
| 6911 | ;;---------------------------------------------------------------------- | 6911 | ;;---------------------------------------------------------------------- |
| 6912 | ;;---------------------------------------------------------------------- | 6912 | ;;---------------------------------------------------------------------- |
| 6913 | ;;---------------------------------------------------------------------- | 6913 | ;;---------------------------------------------------------------------- |
| 6914 | (defvar rtn) | 6914 | (when (featurep 'xemacs) |
| 6915 | (defun idlwave-pset (item) | 6915 | (defvar rtn) |
| 6916 | (set 'rtn item)) | 6916 | (defun idlwave-pset (item) |
| 6917 | (set 'rtn item))) | ||
| 6917 | 6918 | ||
| 6918 | (defun idlwave-popup-select (ev list title &optional sort) | 6919 | (defun idlwave-popup-select (ev list title &optional sort) |
| 6919 | "Select an item in LIST with a popup menu. | 6920 | "Select an item in LIST with a popup menu. |
| @@ -7683,7 +7684,6 @@ property indicating the link is added." | |||
| 7683 | (t nil)))) | 7684 | (t nil)))) |
| 7684 | 7685 | ||
| 7685 | (defvar link) ;dynamic variables set by help callback | 7686 | (defvar link) ;dynamic variables set by help callback |
| 7686 | (defvar props) | ||
| 7687 | (defun idlwave-complete-sysvar-help (mode word) | 7687 | (defun idlwave-complete-sysvar-help (mode word) |
| 7688 | (let ((word (or (nth 1 idlwave-completion-help-info) word)) | 7688 | (let ((word (or (nth 1 idlwave-completion-help-info) word)) |
| 7689 | (entry (assoc word idlwave-system-variables-alist))) | 7689 | (entry (assoc word idlwave-system-variables-alist))) |
| @@ -9364,5 +9364,4 @@ This function was written since `list-abbrevs' looks terrible for IDLWAVE mode." | |||
| 9364 | 9364 | ||
| 9365 | (provide 'idlwave) | 9365 | (provide 'idlwave) |
| 9366 | 9366 | ||
| 9367 | ;; arch-tag: f77f3b0c-c37c-424f-a328-0886fd42b6fb | ||
| 9368 | ;;; idlwave.el ends here | 9367 | ;;; idlwave.el ends here |