# HG changeset patch # User Richard M. Stallman # Date 866970967 0 # Node ID 1dd6f63f0ea3fb471df7f6ccbd6b502a78116fcf # Parent 22cd8d7dd5aa69ad68cbdabb22cc20110f477e28 (paren-blinking group): Doc fix. (current-word): Ignore text properties. diff -r 22cd8d7dd5aa -r 1dd6f63f0ea3 lisp/simple.el --- 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)