# HG changeset patch # User Juanma Barranquero # Date 1120441885 0 # Node ID 47749dcdbecfe39fc85aca417b38cba8b82f1147 # Parent 82d080bf4f42db9c7231aa079cfa6c709379a41c (dabbrev): Finish `defgroup' description with period. (dabbrev-expand): "?\ " -> "?\s". diff -r 82d080bf4f42 -r 47749dcdbecf lisp/dabbrev.el --- a/lisp/dabbrev.el Mon Jul 04 01:51:24 2005 +0000 +++ b/lisp/dabbrev.el Mon Jul 04 01:51:25 2005 +0000 @@ -100,7 +100,7 @@ ;;---------------------------------------------------------------- (defgroup dabbrev nil - "Dynamic Abbreviations" + "Dynamic Abbreviations." :tag "Dynamic Abbreviations" :group 'abbrev :group 'convenience) @@ -509,7 +509,7 @@ (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)))