aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-05-02 21:36:26 +0300
committerEli Zaretskii2023-05-02 21:36:26 +0300
commitfa33a14ebe56aa1726df9c8ad93106966c5b6eae (patch)
tree46ddaf5fc9a3ebb121a5a793f718c51b547103e0
parent299bd316cd172f3a71705ab33efbf23590241e15 (diff)
downloademacs-fa33a14ebe56aa1726df9c8ad93106966c5b6eae.tar.gz
emacs-fa33a14ebe56aa1726df9c8ad93106966c5b6eae.zip
; Fix last change
* lisp/simple.el (blink-matching-paren-highlight-offscreen) (blink-matching-paren-offscreen) (blink-paren-open-paren-line-string): Doc fixes. (Bug#63089)
-rw-r--r--lisp/simple.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index e4a0b9549e0..8d772eee8a8 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -9216,8 +9216,8 @@ it skips the contents of comments that end before point."
9216 :group 'paren-blinking) 9216 :group 'paren-blinking)
9217 9217
9218(defcustom blink-matching-paren-highlight-offscreen nil 9218(defcustom blink-matching-paren-highlight-offscreen nil
9219 "If non-nil, highlight showing in the echo area matched off-screen open paren. 9219 "If non-nil, highlight matched off-screen open paren in the echo area.
9220This highlighting uses face `blink-matching-paren-offscreen'." 9220This highlighting uses the `blink-matching-paren-offscreen' face."
9221 :type 'boolean 9221 :type 'boolean
9222 :version "30.1" 9222 :version "30.1"
9223 :group 'paren-blinking) 9223 :group 'paren-blinking)
@@ -9225,8 +9225,8 @@ This highlighting uses face `blink-matching-paren-offscreen'."
9225(defface blink-matching-paren-offscreen 9225(defface blink-matching-paren-offscreen
9226 '((t :foreground "green")) 9226 '((t :foreground "green"))
9227 "Face for showing in the echo area matched open paren that is off-screen. 9227 "Face for showing in the echo area matched open paren that is off-screen.
9228This face will not be used when `blink-matching-paren-highlight-offscreen' 9228This face is used only when `blink-matching-paren-highlight-offscreen'
9229is nil." 9229is non-nil."
9230 :version "30.1" 9230 :version "30.1"
9231 :group 'paren-blinking) 9231 :group 'paren-blinking)
9232 9232
@@ -9334,7 +9334,7 @@ The function should return non-nil if the two tokens do not match.")
9334 9334
9335(defun blink-paren-open-paren-line-string (pos) 9335(defun blink-paren-open-paren-line-string (pos)
9336 "Return the line string that contains the openparen at POS. 9336 "Return the line string that contains the openparen at POS.
9337Remove the line string's properties but give the openparen a 9337Remove the line string's properties but give the openparen a distinct
9338face if `blink-matching-paren-highlight-offscreen' is non-nil." 9338face if `blink-matching-paren-highlight-offscreen' is non-nil."
9339 (save-excursion 9339 (save-excursion
9340 (goto-char pos) 9340 (goto-char pos)