[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/dabbrev.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/dabbrev.el |
Date: |
Sun, 03 Jul 2005 21:51:26 -0400 |
Index: emacs/lisp/dabbrev.el
diff -c emacs/lisp/dabbrev.el:1.76 emacs/lisp/dabbrev.el:1.77
*** emacs/lisp/dabbrev.el:1.76 Thu May 19 19:06:18 2005
--- emacs/lisp/dabbrev.el Mon Jul 4 01:51:25 2005
***************
*** 100,106 ****
;;----------------------------------------------------------------
(defgroup dabbrev nil
! "Dynamic Abbreviations"
:tag "Dynamic Abbreviations"
:group 'abbrev
:group 'convenience)
--- 100,106 ----
;;----------------------------------------------------------------
(defgroup dabbrev nil
! "Dynamic Abbreviations."
:tag "Dynamic Abbreviations"
:group 'abbrev
:group 'convenience)
***************
*** 509,515 ****
(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) ?\ )
(markerp dabbrev--last-abbrev-location)
(marker-position dabbrev--last-abbrev-location)
(= (point) (1+ dabbrev--last-abbrev-location)))
--- 509,515 ----
(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) ?\s)
(markerp dabbrev--last-abbrev-location)
(marker-position dabbrev--last-abbrev-location)
(= (point) (1+ dabbrev--last-abbrev-location)))
- [Emacs-diffs] Changes to emacs/lisp/dabbrev.el,
Juanma Barranquero <=