diff options
| author | Karoly Lorentey | 2005-12-29 01:18:49 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-12-29 01:18:49 +0000 |
| commit | b2a300dc19a9449c4b8b0138937193ac36b39b1c (patch) | |
| tree | 0871c80bbf6f589dd7711a91ab9db84692c5ea12 | |
| parent | feba0cd6405ebb80af743e2f978442d9c837bcd2 (diff) | |
| download | emacs-b2a300dc19a9449c4b8b0138937193ac36b39b1c.tar.gz emacs-b2a300dc19a9449c4b8b0138937193ac36b39b1c.zip | |
Fix error during bootstrap.
* lisp/cus-start.el: Fix compilation error.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-464
| -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." | |||
| 394 | ((string-match "\\`w32-" (symbol-name symbol)) | 394 | ((string-match "\\`w32-" (symbol-name symbol)) |
| 395 | (eq system-type 'windows-nt)) | 395 | (eq system-type 'windows-nt)) |
| 396 | ((string-match "\\`mac-" (symbol-name symbol)) | 396 | ((string-match "\\`mac-" (symbol-name symbol)) |
| 397 | (eq window-system 'mac)) | 397 | (or (eq system-type 'mac) (eq system-type 'darwin))) |
| 398 | ((string-match "\\`x-.*gtk" (symbol-name symbol)) | 398 | ((string-match "\\`x-.*gtk" (symbol-name symbol)) |
| 399 | (featurep 'gtk)) | 399 | (featurep 'gtk)) |
| 400 | ((string-match "\\`x-" (symbol-name symbol)) | 400 | ((string-match "\\`x-" (symbol-name symbol)) |