diff options
author | Noam Postavsky <npostavs@gmail.com> | 2017-04-20 14:07:19 +0200 |
---|---|---|
committer | Marcin Borkowski <mbork@mbork.pl> | 2017-05-12 11:36:45 +0200 |
commit | 0397f85c6f9b0a5325f774e2a56e7cd85176e228 (patch) | |
tree | 8f427f9fd1a1985af3c631ce44b791b68a92325e /lisp/emacs-lisp | |
parent | 22fc91704be4737865b3715e5278dc78029791bd (diff) | |
download | emacs-0397f85c6f9b0a5325f774e2a56e7cd85176e228.tar.gz emacs-0397f85c6f9b0a5325f774e2a56e7cd85176e228.tar.bz2 emacs-0397f85c6f9b0a5325f774e2a56e7cd85176e228.zip |
* lisp/emacs-lisp/lisp.el (mark-defun): Simplify moving the point.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index e74e2474ee9..71c27d08a2f 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -569,13 +569,9 @@ the one(s) already marked." ; https://lists.gnu.org/archive/html/bug-gnu-emacs/2017-02/msg00196.html (beginning-of-defun (1- (- arg)))) (push-mark end nil t)))))) - (let (nbobp) - (while (progn - (setq nbobp (zerop (forward-line -1))) - (and (looking-at "^\\s-*$") - nbobp))) - (when nbobp - (forward-line 1)))) + (skip-chars-backward "[:space:]\n") + (unless (bobp) + (forward-line 1))) (defvar narrow-to-defun-include-comments nil "If non-nil, `narrow-to-defun' will also show comments preceding the defun.") |