comparison src/xfaces.c @ 35843:c032770ba567

(Fclear_face_cache): Rename the `thorougly' argument into `thoroughly', to make it consistent with the doc string.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 02 Feb 2001 07:48:37 +0000
parents 2e9bfb04e84a
children d3591f4747d7
comparison
equal deleted inserted replaced
35842:dd745bed4d98 35843:c032770ba567
1003 1003
1004 1004
1005 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0, 1005 DEFUN ("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\
1007 Optional THOROUGHLY non-nil means try to free unused fonts, too.") 1007 Optional 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;
1015 } 1015 }
1016 1016