]> code.delx.au - gnu-emacs/commitdiff
(paren-blinking group): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 22 Jun 1997 09:16:07 +0000 (09:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 22 Jun 1997 09:16:07 +0000 (09:16 +0000)
(current-word): Ignore text properties.

lisp/simple.el

index 21b6815b3a84083d6dd3505d824e260799adc178..bcf03192b6afb16ce89edb880da29d302277a6a4 100644 (file)
@@ -2528,8 +2528,8 @@ or adjacent to a word."
                   (setq end (point))
                   (skip-syntax-backward "w_")
                   (setq start (point)))
-                (buffer-substring start end)))
-       (buffer-substring start end)))))
+                (buffer-substring-no-properties start end)))
+       (buffer-substring-no-properties start end)))))
 \f
 (defcustom fill-prefix nil
   "*String for filling to insert at front of new line, or nil for none.
@@ -2877,7 +2877,7 @@ in the mode line."
   (force-mode-line-update))
 
 (defgroup paren-blinking nil
-  "Blinking (un)matching of parens and expressions."
+  "Blinking matching of parens and expressions."
   :prefix "blink-matching-"
   :group 'paren-matching)