diff options
| author | Kenichi Handa | 2011-12-28 16:57:14 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2011-12-28 16:57:14 +0900 |
| commit | d23ab8e8726ecb7e3554644857b4a58e5f7408f1 (patch) | |
| tree | ba4fe863ba0f86637e7549cc07314b564f9095bc /lisp | |
| parent | 0e5317f7e42c1008c40305a94afcdff509a475be (diff) | |
| parent | 8d80ef01d987f052dc8ee641cc65189299e230de (diff) | |
| download | emacs-d23ab8e8726ecb7e3554644857b4a58e5f7408f1.tar.gz emacs-d23ab8e8726ecb7e3554644857b4a58e5f7408f1.zip | |
merge trunk
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f5b3c92f8c2..78cc1862c2f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-12-28 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/gdb-mi.el (gdb-get-source-file-list) | ||
| 4 | (gdb-get-source-file): Move mode line update to | ||
| 5 | gdb-get-source-file (Bug#10087). | ||
| 6 | |||
| 1 | 2011-12-25 Chong Yidong <cyd@gnu.org> | 7 | 2011-12-25 Chong Yidong <cyd@gnu.org> |
| 2 | 8 | ||
| 3 | * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use | 9 | * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use |
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 128ff4bb143..1c38c59bba6 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el | |||
| @@ -3787,9 +3787,7 @@ is set in them." | |||
| 3787 | (dolist (buffer (buffer-list)) | 3787 | (dolist (buffer (buffer-list)) |
| 3788 | (with-current-buffer buffer | 3788 | (with-current-buffer buffer |
| 3789 | (when (member buffer-file-name gdb-source-file-list) | 3789 | (when (member buffer-file-name gdb-source-file-list) |
| 3790 | (gdb-init-buffer)))) | 3790 | (gdb-init-buffer))))) |
| 3791 | (gdb-force-mode-line-update | ||
| 3792 | (propertize "ready" 'face font-lock-variable-name-face))) | ||
| 3793 | 3791 | ||
| 3794 | (defun gdb-get-main-selected-frame () | 3792 | (defun gdb-get-main-selected-frame () |
| 3795 | "Trigger for `gdb-frame-handler' which uses main current | 3793 | "Trigger for `gdb-frame-handler' which uses main current |
| @@ -4128,7 +4126,9 @@ buffers, if required." | |||
| 4128 | (gdb-get-buffer-create 'gdb-breakpoints-buffer) | 4126 | (gdb-get-buffer-create 'gdb-breakpoints-buffer) |
| 4129 | (if (and gdb-show-main gdb-main-file) | 4127 | (if (and gdb-show-main gdb-main-file) |
| 4130 | (let ((pop-up-windows t)) | 4128 | (let ((pop-up-windows t)) |
| 4131 | (display-buffer (gud-find-file gdb-main-file)))))) | 4129 | (display-buffer (gud-find-file gdb-main-file))))) |
| 4130 | (gdb-force-mode-line-update | ||
| 4131 | (propertize "ready" 'face font-lock-variable-name-face))) | ||
| 4132 | 4132 | ||
| 4133 | ;;from put-image | 4133 | ;;from put-image |
| 4134 | (defun gdb-put-string (putstring pos &optional dprop &rest sprops) | 4134 | (defun gdb-put-string (putstring pos &optional dprop &rest sprops) |