1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

(paren-blinking group): Doc fix.

(current-word): Ignore text properties.
This commit is contained in:
Richard M. Stallman 1997-06-22 09:16:07 +00:00
parent 5d5beb624a
commit 020db25fa4

View 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)))))
(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)