mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(gud-gdb-run-command-fetch-lines, gud-display-line):
Use with-current-buffer and simplify.
This commit is contained in:
parent
22f5d49208
commit
1e28f647a7
10
lisp/gud.el
10
lisp/gud.el
@ -627,8 +627,7 @@ It is passed through FILTER before we look at it."
|
||||
"Run COMMAND, and return the list of lines it outputs.
|
||||
BUFFER is the GUD buffer in which to run the command.
|
||||
SKIP is the number of chars to skip on each lines, it defaults to 0."
|
||||
(save-excursion
|
||||
(set-buffer buffer)
|
||||
(with-current-buffer buffer
|
||||
(if (save-excursion
|
||||
(goto-char (point-max))
|
||||
(forward-line 0)
|
||||
@ -2503,9 +2502,7 @@ Obeying it means displaying in another window the specified file and line."
|
||||
(defun gud-display-line (true-file line)
|
||||
(let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions.
|
||||
(buffer
|
||||
(save-excursion
|
||||
(or (eq (current-buffer) gud-comint-buffer)
|
||||
(set-buffer gud-comint-buffer))
|
||||
(with-current-buffer gud-comint-buffer
|
||||
(gud-find-file true-file)))
|
||||
(window (and buffer (or (get-buffer-window buffer)
|
||||
(if (eq gud-minor-mode 'gdba)
|
||||
@ -2514,8 +2511,7 @@ Obeying it means displaying in another window the specified file and line."
|
||||
(pos))
|
||||
(if buffer
|
||||
(progn
|
||||
(save-excursion
|
||||
(set-buffer buffer)
|
||||
(with-current-buffer buffer
|
||||
(if (not (or (verify-visited-file-modtime buffer) gud-keep-buffer))
|
||||
(progn
|
||||
(if
|
||||
|
Loading…
Reference in New Issue
Block a user