diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-13 16:36:05 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-13 16:36:05 +0000 |
commit | ce00d093379eb0b90ff68c803c657a7677857f76 (patch) | |
tree | ef02ba22451b5a7f9fc2abba63725361c5af8c66 /lisp/cus-start.el | |
parent | a4382f9852d0ebe48edc922293f6eed262f6116f (diff) | |
download | emacs-ce00d093379eb0b90ff68c803c657a7677857f76.tar.gz |
* cus-start.el (all): Use test that does not match the X11 version
for mac.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 179fd6b183e..6a66d8caa75 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -433,7 +433,7 @@ since it could result in memory overflow and make Emacs crash." ((string-match "\\`w32-" (symbol-name symbol)) (eq system-type 'windows-nt)) ((string-match "\\`mac-" (symbol-name symbol)) - (or (eq system-type 'mac) (eq system-type 'darwin))) + (featurep 'mac-carbon)) ((string-match "\\`x-.*gtk" (symbol-name symbol)) (featurep 'gtk)) ((string-match "\\`x-" (symbol-name symbol)) |