diff options
| author | Juanma Barranquero | 2012-05-09 02:45:34 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-05-09 02:45:34 +0200 |
| commit | 4824146aa85b7e0cdfe9cab024d2137c98b85174 (patch) | |
| tree | 26f3d087f2cb3355499c4982f9f4d52080a3e2a4 | |
| parent | b499d8d02c271d50efdabe6dd6c598da45ef5cc6 (diff) | |
| download | emacs-4824146aa85b7e0cdfe9cab024d2137c98b85174.tar.gz emacs-4824146aa85b7e0cdfe9cab024d2137c98b85174.zip | |
lisp/progmodes/idlw-shell.el: Cleanup after 2012-05-04T05:14:14Z!cyd@gnu.org.
(specs): Remove reference to deleted variable
`idlwave-shell-activate-alt-keybindings' and simplify.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/idlw-shell.el | 8 |
2 files changed, 5 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed74bd452fd..30e5ac3c7eb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-05-09 Juanma Barranquero <lekktu@gmail.com> | 1 | 2012-05-09 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * progmodes/idlw-shell.el (specs): Remove reference to deleted | ||
| 4 | variable `idlwave-shell-activate-alt-keybindings' and simplify. | ||
| 5 | |||
| 3 | * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change. | 6 | * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change. |
| 4 | 7 | ||
| 5 | 2012-05-08 Glenn Morris <rgm@gnu.org> | 8 | 2012-05-08 Glenn Morris <rgm@gnu.org> |
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el index ca51eef6e8e..da8f30bab43 100644 --- a/lisp/progmodes/idlw-shell.el +++ b/lisp/progmodes/idlw-shell.el | |||
| @@ -4183,12 +4183,8 @@ Otherwise, just expand the file name." | |||
| 4183 | ([( ?[)] ?[ idlwave-shell-goto-previous-bp t t) | 4183 | ([( ?[)] ?[ idlwave-shell-goto-previous-bp t t) |
| 4184 | ([( ?])] ?] idlwave-shell-goto-next-bp t t) | 4184 | ([( ?])] ?] idlwave-shell-goto-next-bp t t) |
| 4185 | ([(control ?f)] ?f idlwave-shell-window))) | 4185 | ([(control ?f)] ?f idlwave-shell-window))) |
| 4186 | (mod (cond ((and idlwave-shell-debug-modifiers | 4186 | (mod (and (listp idlwave-shell-debug-modifiers) |
| 4187 | (listp idlwave-shell-debug-modifiers) | 4187 | idlwave-shell-debug-modifiers)) |
| 4188 | (not (equal '() idlwave-shell-debug-modifiers))) | ||
| 4189 | idlwave-shell-debug-modifiers) | ||
| 4190 | (idlwave-shell-activate-alt-keybindings | ||
| 4191 | '(alt)))) | ||
| 4192 | (shift (memq 'shift mod)) | 4188 | (shift (memq 'shift mod)) |
| 4193 | (mod-noshift (delete 'shift (copy-sequence mod))) | 4189 | (mod-noshift (delete 'shift (copy-sequence mod))) |
| 4194 | s k1 c2 k2 cmd electric only-buffer cannotshift) | 4190 | s k1 c2 k2 cmd electric only-buffer cannotshift) |