aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2002-04-25 18:00:37 +0000
committerPavel Janík2002-04-25 18:00:37 +0000
commitca70e62febbbb5315ba2908f5a1d189635039928 (patch)
tree9f74ad9399521f92bdf95adcf5b0cc02a3e6e74c /src
parentef58a7ec876cd60b2ab9c7223013fc3079e67c72 (diff)
downloademacs-ca70e62febbbb5315ba2908f5a1d189635039928.tar.gz
emacs-ca70e62febbbb5315ba2908f5a1d189635039928.zip
(abbrev-start-location): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/abbrev.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 686c19c77b1..f85358a4f7b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -6,6 +6,8 @@
6 6
72002-04-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 72002-04-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
8 8
9 * abbrev.c (abbrev-start-location): Doc fix.
10
9 * indent.c (Fvertical_motion): Fix last change. 11 * indent.c (Fvertical_motion): Fix last change.
10 12
112002-04-25 Gerd Moellmann <gerd@gnu.org> 132002-04-25 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/abbrev.c b/src/abbrev.c
index 54e0e8464bb..8ffa3226a61 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -389,8 +389,8 @@ Returns the abbrev symbol, if expansion took place. */)
389 /* If the abbrev has a hook function, run it. */ 389 /* If the abbrev has a hook function, run it. */
390 expanded = call0 (hook); 390 expanded = call0 (hook);
391 391
392 /* In addition, if the hook function is a symbol with a a 392 /* In addition, if the hook function is a symbol with
393 non-nil `no-self-insert' property, let the value it returned 393 a non-nil `no-self-insert' property, let the value it returned
394 specify whether we consider that an expansion took place. If 394 specify whether we consider that an expansion took place. If
395 it returns nil, no expansion has been done. */ 395 it returns nil, no expansion has been done. */
396 396
@@ -635,7 +635,7 @@ nil if the abbrev has already been unexpanded. */);
635 635
636 DEFVAR_LISP ("abbrev-start-location", &Vabbrev_start_location, 636 DEFVAR_LISP ("abbrev-start-location", &Vabbrev_start_location,
637 doc: /* Buffer position for `expand-abbrev' to use as the start of the abbrev. 637 doc: /* Buffer position for `expand-abbrev' to use as the start of the abbrev.
638nil means use the word before point as the abbrev. 638When nil, use the word before point as the abbrev.
639Calling `expand-abbrev' sets this to nil. */); 639Calling `expand-abbrev' sets this to nil. */);
640 Vabbrev_start_location = Qnil; 640 Vabbrev_start_location = Qnil;
641 641