diff options
| author | Glenn Morris | 2013-07-20 12:20:33 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-07-20 12:20:33 -0700 |
| commit | f0398ec17f8a00d6c6d828c3d04522d94337d156 (patch) | |
| tree | 478a4829ab66fd14da41090767b8f8a9d8d9122b /lisp | |
| parent | 1451928fffb2065a90e3decd0b9ba34d74dcc22b (diff) | |
| parent | 862f1c9c3a172cd704e286964705b06aaf68b7fa (diff) | |
| download | emacs-f0398ec17f8a00d6c6d828c3d04522d94337d156.tar.gz emacs-f0398ec17f8a00d6c6d828c3d04522d94337d156.zip | |
Merge from emacs-24; up to 2012-12-31T11:35:13Z!rudalics@gmx.at
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/image-dired.el | 8 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/sh-script.el | 1 |
4 files changed, 18 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b47dbacd5a8..a259c044020 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,18 @@ | |||
| 1 | 2013-07-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * image-dired.el (image-dired-track-original-file): | ||
| 4 | Avoid changing point of wrong window. (Bug#14909) | ||
| 5 | |||
| 6 | 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change) | ||
| 7 | |||
| 8 | * progmodes/gdb-mi.el (gdb-done-or-error): | ||
| 9 | Guard against "%" in gdb output. (Bug#14127) | ||
| 10 | |||
| 1 | 2013-07-20 Andreas Schwab <schwab@linux-m68k.org> | 11 | 2013-07-20 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 12 | ||
| 13 | * progmodes/sh-script.el (sh-read-variable): Remove interactive | ||
| 14 | spec. (Bug#14826) | ||
| 15 | |||
| 3 | * international/mule.el (coding-system-iso-2022-flags): Fix last | 16 | * international/mule.el (coding-system-iso-2022-flags): Fix last |
| 4 | change. | 17 | change. |
| 5 | 18 | ||
diff --git a/lisp/image-dired.el b/lisp/image-dired.el index afb940fe337..b196bf77671 100644 --- a/lisp/image-dired.el +++ b/lisp/image-dired.el | |||
| @@ -1039,15 +1039,15 @@ With prefix argument ARG, remove tag from file at point." | |||
| 1039 | See documentation for `image-dired-toggle-movement-tracking'. | 1039 | See documentation for `image-dired-toggle-movement-tracking'. |
| 1040 | Interactive use only useful if `image-dired-track-movement' is nil." | 1040 | Interactive use only useful if `image-dired-track-movement' is nil." |
| 1041 | (interactive) | 1041 | (interactive) |
| 1042 | (let ((old-buf (current-buffer)) | 1042 | (let* ((old-buf (current-buffer)) |
| 1043 | (dired-buf (image-dired-associated-dired-buffer)) | 1043 | (dired-buf (image-dired-associated-dired-buffer)) |
| 1044 | (file-name (image-dired-original-file-name))) | 1044 | (file-name (image-dired-original-file-name)) |
| 1045 | (window (image-dired-get-buffer-window dired-buf))) | ||
| 1045 | (when (and (buffer-live-p dired-buf) file-name) | 1046 | (when (and (buffer-live-p dired-buf) file-name) |
| 1046 | (set-buffer dired-buf) | 1047 | (set-buffer dired-buf) |
| 1047 | (if (not (dired-goto-file file-name)) | 1048 | (if (not (dired-goto-file file-name)) |
| 1048 | (message "Could not track file") | 1049 | (message "Could not track file") |
| 1049 | (set-window-point | 1050 | (if window (set-window-point window (point)))) |
| 1050 | (image-dired-get-buffer-window dired-buf) (point))) | ||
| 1051 | (set-buffer old-buf)))) | 1051 | (set-buffer old-buf)))) |
| 1052 | 1052 | ||
| 1053 | (defun image-dired-toggle-movement-tracking () | 1053 | (defun image-dired-toggle-movement-tracking () |
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 10472ec5815..96215b9bf1a 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el | |||
| @@ -2500,7 +2500,7 @@ current thread and update GDB buffers." | |||
| 2500 | ;; MI error - send to minibuffer | 2500 | ;; MI error - send to minibuffer |
| 2501 | (when (eq type 'error) | 2501 | (when (eq type 'error) |
| 2502 | ;; Skip "msg=" from `output-field' | 2502 | ;; Skip "msg=" from `output-field' |
| 2503 | (message (read (substring output-field 4))) | 2503 | (message "%s" (read (substring output-field 4))) |
| 2504 | ;; Don't send to the console twice. (If it is a console error | 2504 | ;; Don't send to the console twice. (If it is a console error |
| 2505 | ;; it is also in the console stream.) | 2505 | ;; it is also in the console stream.) |
| 2506 | (setq output-field nil))) | 2506 | (setq output-field nil))) |
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 07e9bb85c4e..29020d95226 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -2401,7 +2401,6 @@ which in this buffer is currently %s. | |||
| 2401 | 2401 | ||
| 2402 | (defun sh-read-variable (var) | 2402 | (defun sh-read-variable (var) |
| 2403 | "Read a new value for indentation variable VAR." | 2403 | "Read a new value for indentation variable VAR." |
| 2404 | (interactive "*variable? ") ;; to test | ||
| 2405 | (let ((minibuffer-help-form `(sh-help-string-for-variable | 2404 | (let ((minibuffer-help-form `(sh-help-string-for-variable |
| 2406 | (quote ,var))) | 2405 | (quote ,var))) |
| 2407 | val) | 2406 | val) |