diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 01:51:25 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 01:51:25 +0000 |
commit | a6bd541a051795531f610761a09e19f7a54bffc0 (patch) | |
tree | 4b6b85a74c49fd2159fba38388ca1b697f7feb32 /lisp/dabbrev.el | |
parent | 3938cb82d0fdfcf083c7b08fc9c3ce0f06778529 (diff) | |
download | emacs-a6bd541a051795531f610761a09e19f7a54bffc0.tar.gz |
(dabbrev): Finish `defgroup' description with period.
(dabbrev-expand): "?\ " -> "?\s".
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index 5dea9892115..cbb2526c852 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -100,7 +100,7 @@ ;;---------------------------------------------------------------- (defgroup dabbrev nil - "Dynamic Abbreviations" + "Dynamic Abbreviations." :tag "Dynamic Abbreviations" :group 'abbrev :group 'convenience) @@ -509,7 +509,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." (setq direction dabbrev--last-direction)) ;; If the user inserts a space after expanding ;; and then asks to expand again, always fetch the next word. - (if (and (eq (preceding-char) ?\ ) + (if (and (eq (preceding-char) ?\s) (markerp dabbrev--last-abbrev-location) (marker-position dabbrev--last-abbrev-location) (= (point) (1+ dabbrev--last-abbrev-location))) |