aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-02-02 07:50:18 +0000
committerEli Zaretskii2001-02-02 07:50:18 +0000
commit6a3f48c7ea95e388f755ed40e375241080c4d4fc (patch)
tree2fb85262ac15092f673621c7044f8c7178082078 /src
parent5a72551e18e0cafaeb551f81b33e0685733276e0 (diff)
downloademacs-6a3f48c7ea95e388f755ed40e375241080c4d4fc.tar.gz
emacs-6a3f48c7ea95e388f755ed40e375241080c4d4fc.zip
(Fclear_face_cache): Rename the `thorougly' argument
into `thoroughly', to make it consistent with the doc string.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/xfaces.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6bb9dd31057..7e739956f7e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12001-02-02 Eli Zaretskii <eliz@is.elta.co.il> 12001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * xfaces.c (Fclear_face_cache): Rename the `thorougly' argument
4 into `thoroughly', to make it consistent with the doc string.
5
3 * window.c (Fenlarge_window, Fshrink_window): Doc fix. 6 * window.c (Fenlarge_window, Fshrink_window): Doc fix.
4 7
52001-02-01 Gerd Moellmann <gerd@gnu.org> 82001-02-01 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/xfaces.c b/src/xfaces.c
index c23de151cad..fc8a224b5bd 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1005,10 +1005,10 @@ clear_face_cache (clear_fonts_p)
1005DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, 1005DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
1006 "Clear face caches on all frames.\n\ 1006 "Clear face caches on all frames.\n\
1007Optional THOROUGHLY non-nil means try to free unused fonts, too.") 1007Optional THOROUGHLY non-nil means try to free unused fonts, too.")
1008 (thorougly) 1008 (thoroughly)
1009 Lisp_Object thorougly; 1009 Lisp_Object thoroughly;
1010{ 1010{
1011 clear_face_cache (!NILP (thorougly)); 1011 clear_face_cache (!NILP (thoroughly));
1012 ++face_change_count; 1012 ++face_change_count;
1013 ++windows_or_buffers_changed; 1013 ++windows_or_buffers_changed;
1014 return Qnil; 1014 return Qnil;