diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-12-29 01:18:49 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-12-29 01:18:49 +0000 |
commit | b2a300dc19a9449c4b8b0138937193ac36b39b1c (patch) | |
tree | 0871c80bbf6f589dd7711a91ab9db84692c5ea12 /lisp | |
parent | feba0cd6405ebb80af743e2f978442d9c837bcd2 (diff) | |
download | emacs-b2a300dc19a9449c4b8b0138937193ac36b39b1c.tar.gz |
Fix error during bootstrap.
* lisp/cus-start.el: Fix compilation error.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-464
Diffstat (limited to 'lisp')
-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 65f9c0812fd..991ff24058a 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -394,7 +394,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)) |