From: Eli Zaretskii Date: Fri, 2 Feb 2001 07:50:18 +0000 (+0000) Subject: (Fclear_face_cache): Rename the `thorougly' argument X-Git-Tag: emacs-pretest-21.0.98~207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a3f48c7ea95e388f755ed40e375241080c4d4fc;p=emacs.git (Fclear_face_cache): Rename the `thorougly' argument into `thoroughly', to make it consistent with the doc string. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6bb9dd31057..7e739956f7e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-02-02 Eli Zaretskii + * xfaces.c (Fclear_face_cache): Rename the `thorougly' argument + into `thoroughly', to make it consistent with the doc string. + * window.c (Fenlarge_window, Fshrink_window): Doc fix. 2001-02-01 Gerd Moellmann 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) DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, "Clear face caches on all frames.\n\ Optional THOROUGHLY non-nil means try to free unused fonts, too.") - (thorougly) - Lisp_Object thorougly; + (thoroughly) + Lisp_Object thoroughly; { - clear_face_cache (!NILP (thorougly)); + clear_face_cache (!NILP (thoroughly)); ++face_change_count; ++windows_or_buffers_changed; return Qnil;