From: Juanma Barranquero Date: Mon, 4 Jul 2005 01:51:25 +0000 (+0000) Subject: (dabbrev): Finish `defgroup' description with period. X-Git-Tag: emacs-pretest-22.0.90~8439 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6bd541a051795531f610761a09e19f7a54bffc0;p=emacs.git (dabbrev): Finish `defgroup' description with period. (dabbrev-expand): "?\ " -> "?\s". --- 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)))