diff options
author | Chong Yidong <cyd@gnu.org> | 2012-10-23 10:39:13 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-10-23 10:39:13 +0800 |
commit | 49238e7f5c081b841bdc57d96599c4997dcb487c (patch) | |
tree | d29f99205bd99e7c6e19f810bd11eeac6ca1fb65 /lisp/faces.el | |
parent | 1fb3aa3fead098e7df1428c7a70e3a32f1da23e4 (diff) | |
download | emacs-49238e7f5c081b841bdc57d96599c4997dcb487c.tar.gz |
Make unused variable font-list-limit obsolete, and move it out of C.
* display.texi (Font Lookup): Remove font-list-limit.
* lisp/startup.el (command-line):
* lisp/cus-start.el: Don't refer to font-list-limit.
* lisp/faces.el (font-list-limit): Define as an obsolete variable.
* xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 08aa800c067..f5ef88d08b0 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2572,6 +2572,12 @@ also the same size as FACE on FRAME, or fail." (car fonts)) (cdr (assq 'font (frame-parameters (selected-frame)))))) +(defcustom font-list-limit 100 + "This variable is obsolete and has no effect." + :type 'integer + :group 'display) +(make-obsolete-variable 'font-list-limit nil "24.3") + (provide 'faces) ;;; faces.el ends here |