cus-start.el (all): Add native condition for tool-bar-* symbols.
This commit is contained in:
parent
d16bdfc3a1
commit
c0162ade6f
2 changed files with 8 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* cus-start.el (all): Add native condition for tool-bar-* symbols.
|
||||
|
||||
2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
|
||||
|
||||
* lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
|
||||
|
|
|
|||
|
|
@ -408,6 +408,10 @@ since it could result in memory overflow and make Emacs crash."
|
|||
(fboundp 'define-fringe-bitmap))
|
||||
((equal "font-use-system-font" (symbol-name symbol))
|
||||
(featurep 'system-font-setting))
|
||||
;; Conditioned on x-create-frame, because that's
|
||||
;; the condition for loadup.el to preload tool-bar.el.
|
||||
((string-match "tool-bar-" (symbol-name symbol))
|
||||
(fboundp 'x-create-frame))
|
||||
(t t))))
|
||||
(if (not (boundp symbol))
|
||||
;; If variables are removed from C code, give an error here!
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue