diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-13 09:14:27 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-13 09:14:27 +0000 |
commit | 3d2062d8f6e43761a1175f1b9f779b827012722a (patch) | |
tree | a26a4b0aae60c3f003134a364f936d4418313c76 /lisp/cus-start.el | |
parent | 5f90d53e19082ea71cd523d80df09dc36999d00d (diff) | |
download | emacs-3d2062d8f6e43761a1175f1b9f779b827012722a.tar.gz emacs-3d2062d8f6e43761a1175f1b9f779b827012722a.tar.bz2 emacs-3d2062d8f6e43761a1175f1b9f779b827012722a.zip |
* cus-start.el (all): Undo previous change.
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 c5d50549c5e..179fd6b183e 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)) - (eq window-system 'mac)) + (or (eq system-type 'mac) (eq system-type 'darwin))) ((string-match "\\`x-.*gtk" (symbol-name symbol)) (featurep 'gtk)) ((string-match "\\`x-" (symbol-name symbol)) |