changeset 18379:1dd6f63f0ea3

(paren-blinking group): Doc fix. (current-word): Ignore text properties.
author Richard M. Stallman <rms@gnu.org>
date Sun, 22 Jun 1997 09:16:07 +0000
parents 22cd8d7dd5aa
children d515bf202434
files lisp/simple.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Sun Jun 22 09:06:04 1997 +0000
+++ b/lisp/simple.el	Sun Jun 22 09:16:07 1997 +0000
@@ -2528,8 +2528,8 @@
 		   (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)))))
 
 (defcustom fill-prefix nil
   "*String for filling to insert at front of new line, or nil for none.
@@ -2877,7 +2877,7 @@
   (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)