aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-16 06:14:22 +0000
committerKarl Heuer1995-05-16 06:14:22 +0000
commitf61deddc6d2cc98b73e95e31cd3716a456a5d94d (patch)
treeda7dd6612c18dcccd9949cd330012f59d8bbe6cf
parent6e55cbc223e1aeffb2e713208506372f15d2854f (diff)
downloademacs-f61deddc6d2cc98b73e95e31cd3716a456a5d94d.tar.gz
emacs-f61deddc6d2cc98b73e95e31cd3716a456a5d94d.zip
(facemenu-set-face-from-menu): Doc fix.
(facemenu-set-background, facemenu-set-foreground): Doc fix. (facemenu-set-face): Doc fix.
-rw-r--r--lisp/facemenu.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/facemenu.el b/lisp/facemenu.el
index d7f9964bd78..1c9c5de811f 100644
--- a/lisp/facemenu.el
+++ b/lisp/facemenu.el
@@ -263,7 +263,7 @@ Interactively, the face to be used is prompted for.
263If the region is active, it will be set to the requested face. If 263If the region is active, it will be set to the requested face. If
264it is inactive \(even if mark-even-if-inactive is set) the next 264it is inactive \(even if mark-even-if-inactive is set) the next
265character that is typed \(or otherwise inserted) will be set to 265character that is typed \(or otherwise inserted) will be set to
266the the selected face. Moving point or switching buffers before 266the selected face. Moving point or switching buffers before
267typing a character cancels the request." 267typing a character cancels the request."
268 (interactive (list (read-face-name "Use face: "))) 268 (interactive (list (read-face-name "Use face: ")))
269 (barf-if-buffer-read-only) 269 (barf-if-buffer-read-only)
@@ -281,7 +281,7 @@ The color is prompted for. A face named `fg:color' is used \(or created).
281If the region is active, it will be set to the requested face. If 281If the region is active, it will be set to the requested face. If
282it is inactive \(even if mark-even-if-inactive is set) the next 282it is inactive \(even if mark-even-if-inactive is set) the next
283character that is typed \(via `self-insert-command') will be set to 283character that is typed \(via `self-insert-command') will be set to
284the the selected face. Moving point or switching buffers before 284the selected face. Moving point or switching buffers before
285typing a character cancels the request." 285typing a character cancels the request."
286 (interactive (list (facemenu-read-color "Foreground color: "))) 286 (interactive (list (facemenu-read-color "Foreground color: ")))
287 (let ((face (intern (concat "fg:" color)))) 287 (let ((face (intern (concat "fg:" color))))
@@ -296,7 +296,7 @@ The color is prompted for. A face named `bg:color' is used \(or created).
296If the region is active, it will be set to the requested face. If 296If the region is active, it will be set to the requested face. If
297it is inactive \(even if mark-even-if-inactive is set) the next 297it is inactive \(even if mark-even-if-inactive is set) the next
298character that is typed \(via `self-insert-command') will be set to 298character that is typed \(via `self-insert-command') will be set to
299the the selected face. Moving point or switching buffers before 299the selected face. Moving point or switching buffers before
300typing a character cancels the request." 300typing a character cancels the request."
301 (interactive (list (facemenu-read-color "Background color: "))) 301 (interactive (list (facemenu-read-color "Background color: ")))
302 (let ((face (intern (concat "bg:" color)))) 302 (let ((face (intern (concat "bg:" color))))
@@ -312,7 +312,7 @@ is the menu item's name.
312If the region is active, it will be set to the requested face. If 312If the region is active, it will be set to the requested face. If
313it is inactive \(even if mark-even-if-inactive is set) the next 313it is inactive \(even if mark-even-if-inactive is set) the next
314character that is typed \(or otherwise inserted) will be set to 314character that is typed \(or otherwise inserted) will be set to
315the the selected face. Moving point or switching buffers before 315the selected face. Moving point or switching buffers before
316typing a character cancels the request." 316typing a character cancels the request."
317 (interactive (list last-command-event 317 (interactive (list last-command-event
318 (if mark-active (region-beginning)) 318 (if mark-active (region-beginning))