aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2012-11-21 00:27:13 -0800
committerGlenn Morris2012-11-21 00:27:13 -0800
commit3ca2f1bf25b46877497c34c70b36dd511678e29b (patch)
tree1c2954680cb86932d31b24aeec4491ab86628ea6 /doc
parent6ef2e5ef5278a807132b78c42de402925b20bfb3 (diff)
downloademacs-3ca2f1bf25b46877497c34c70b36dd511678e29b.tar.gz
emacs-3ca2f1bf25b46877497c34c70b36dd511678e29b.zip
Remove -p suffix from set-face-* functions
* lisp/faces.el (set-face-inverse-video, set-face-bold, set-face-italic): Remove -p suffix from names, for consistency with other set-face-*. (set-face-inverse-video): Fix interactive spec. * lisp/play/gamegrid.el (gamegrid-make-mono-tty-face): * lisp/textmodes/table.el (table--update-cell-face): Use set-face-inverse-video rather than now obsolete alias. * doc/lispref/display.texi (Attribute Functions): Update for set-face-* name changes.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog3
-rw-r--r--doc/lispref/display.texi6
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index db896984c86..9dee3797bdd 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,8 @@
12012-11-21 Glenn Morris <rgm@gnu.org> 12012-11-21 Glenn Morris <rgm@gnu.org>
2 2
3 * display.texi (Attribute Functions):
4 Update for set-face-* name changes.
5
3 * debugging.texi (Profiling): New section. 6 * debugging.texi (Profiling): New section.
4 (Debugging): Mention profiling in the introduction. 7 (Debugging): Mention profiling in the introduction.
5 * tips.texi (Compilation Tips): Move profiling to separate section. 8 * tips.texi (Compilation Tips): Move profiling to separate section.
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 475a9550f99..0932e8ceac2 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -2425,12 +2425,12 @@ This sets the @code{:stipple} attribute of @var{face} to
2425This sets the @code{:font} attribute of @var{face} to @var{font}. 2425This sets the @code{:font} attribute of @var{face} to @var{font}.
2426@end deffn 2426@end deffn
2427 2427
2428@defun set-face-bold-p face bold-p &optional frame 2428@defun set-face-bold face bold-p &optional frame
2429This sets the @code{:weight} attribute of @var{face} to @var{normal} 2429This sets the @code{:weight} attribute of @var{face} to @var{normal}
2430if @var{bold-p} is @code{nil}, and to @var{bold} otherwise. 2430if @var{bold-p} is @code{nil}, and to @var{bold} otherwise.
2431@end defun 2431@end defun
2432 2432
2433@defun set-face-italic-p face italic-p &optional frame 2433@defun set-face-italic face italic-p &optional frame
2434This sets the @code{:slant} attribute of @var{face} to @var{normal} if 2434This sets the @code{:slant} attribute of @var{face} to @var{normal} if
2435@var{italic-p} is @code{nil}, and to @var{italic} otherwise. 2435@var{italic-p} is @code{nil}, and to @var{italic} otherwise.
2436@end defun 2436@end defun
@@ -2440,7 +2440,7 @@ This sets the @code{:underline} attribute of @var{face} to
2440@var{underline}. 2440@var{underline}.
2441@end defun 2441@end defun
2442 2442
2443@defun set-face-inverse-video-p face inverse-video-p &optional frame 2443@defun set-face-inverse-video face inverse-video-p &optional frame
2444This sets the @code{:inverse-video} attribute of @var{face} to 2444This sets the @code{:inverse-video} attribute of @var{face} to
2445@var{inverse-video-p}. 2445@var{inverse-video-p}.
2446@end defun 2446@end defun