Mercurial > emacs
changeset 43076:875f7fc9838e
(dabbrev--goto-start-of-abbrev):
Exit loop on beginning of field rather than bobp.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 03 Feb 2002 10:26:49 +0000 |
parents | e14b8be37d7d |
children | 1983a485a15f |
files | lisp/dabbrev.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dabbrev.el Sun Feb 03 05:18:23 2002 +0000 +++ b/lisp/dabbrev.el Sun Feb 03 10:26:49 2002 +0000 @@ -599,7 +599,7 @@ (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))))