]> git.eshelyaron.com Git - emacs.git/commitdiff
(dabbrev): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 01:51:25 +0000 (01:51 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 01:51:25 +0000 (01:51 +0000)
(dabbrev-expand): "?\ " -> "?\s".

lisp/dabbrev.el

index 5dea989211548cd7514f774c3fbc3f41fd94e4dc..cbb2526c8527066295505d37e9d27b82b16474af 100644 (file)
 ;;----------------------------------------------------------------
 
 (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)))