diff options
author | Glenn Morris <rgm@gnu.org> | 2009-08-22 19:20:27 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-08-22 19:20:27 +0000 |
commit | df1c29a0a0cfc2ad8302e85b794ff3bc76126333 (patch) | |
tree | c7c3f5c3a891bd8c68762cdafda91a62f9585166 | |
parent | 7537cf237a296384498a7a3b69799e08962f1461 (diff) | |
download | emacs-df1c29a0a0cfc2ad8302e85b794ff3bc76126333.tar.gz emacs-df1c29a0a0cfc2ad8302e85b794ff3bc76126333.tar.bz2 emacs-df1c29a0a0cfc2ad8302e85b794ff3bc76126333.zip |
(makefile-browser-toggle): Use forward-line rather than goto-line.
(makefile-browser-insert-selection): Use goto-char rather than goto-line.
-rw-r--r-- | lisp/progmodes/make-mode.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index fa8cf63c87a..cff6ec24bf1 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -1486,9 +1486,10 @@ definition and conveniently use this command." (let ((this-line (count-lines (point-min) (point)))) (setq this-line (max 1 this-line)) (makefile-browser-toggle-state-for-line this-line) - (goto-line this-line) + (goto-char (point-min)) + (forward-line (1- this-line)) (let ((inhibit-read-only t)) - (beginning-of-line) + (beginning-of-line) ; redundant? (if (makefile-browser-on-macro-line-p) (let ((macro-name (makefile-browser-this-line-macro-name))) (delete-region (point) (progn (end-of-line) (point))) @@ -1528,7 +1529,7 @@ large dependencies from the browser to the client buffer. Insertion takes place at point." (interactive) (save-excursion - (goto-line 1) + (goto-char (point-min)) (let ((current-line 1)) (while (not (eobp)) (if (makefile-browser-get-state-for-line current-line) |