diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-02-03 10:26:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-02-03 10:26:49 +0000 |
commit | 3f5075727e735bc6cee9434ef9fb1a7b37b8ea66 (patch) | |
tree | 88ca554c53136adf3819b97c4b2e0da42151e144 /lisp/dabbrev.el | |
parent | 5ea0e32b8a51ff08a2d924a89dad85a4689a495b (diff) | |
download | emacs-3f5075727e735bc6cee9434ef9fb1a7b37b8ea66.tar.gz |
(dabbrev--goto-start-of-abbrev):
Exit loop on beginning of field rather than bobp.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index b0858565703..92191a926c3 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -599,7 +599,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." (progn (forward-char -1) (while (and (looking-at dabbrev--abbrev-char-regexp) - (not (bobp))) + (not (= (point) (field-beginning (point))))) (forward-char -1)) (or (looking-at dabbrev--abbrev-char-regexp) (forward-char 1)))) |