Mercurial > hg > xemacs-beta
comparison lisp/dumped-lisp.el @ 412:697ef44129c6 r21-2-14
Import from CVS: tag r21-2-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:20:41 +0200 |
parents | de805c49cfc1 |
children | da8ed4261e83 |
comparison
equal
deleted
inserted
replaced
411:12e008d41344 | 412:697ef44129c6 |
---|---|
30 "objects" | 30 "objects" |
31 "extents" | 31 "extents" |
32 "events" | 32 "events" |
33 "text-props" | 33 "text-props" |
34 "process" ;; This is bad. network-streams may not be defined. | 34 "process" ;; This is bad. network-streams may not be defined. |
35 (when-feature multicast "multicast") ; #+network-streams implicitly true | 35 (when-feature multicast "multicast") ; #+network-streams implicitely true |
36 "frame" ; move up here cause some stuff needs it here | 36 "frame" ; move up here cause some stuff needs it here |
37 "map-ynp" | 37 "map-ynp" |
38 "simple" | 38 "simple" |
39 "keydefs" ; Before loaddefs so that keymap vars exist. | 39 "keydefs" ; Before loaddefs so that keymap vars exist. |
40 "abbrev" | 40 "abbrev" |
47 ;; duplicate doc string warnings, SparcWorks uses a separate | 47 ;; duplicate doc string warnings, SparcWorks uses a separate |
48 ;; autoloads file with the dumped packages removed. | 48 ;; autoloads file with the dumped packages removed. |
49 ;; After fixing, eos/loaddefs-eos and loaddefs appear identical?!! | 49 ;; After fixing, eos/loaddefs-eos and loaddefs appear identical?!! |
50 ;; So just make loaddefs-eos go away... | 50 ;; So just make loaddefs-eos go away... |
51 ;;(pureload (if (featurep 'sparcworks) "eos/loaddefs-eos" "loaddefs")) | 51 ;;(pureload (if (featurep 'sparcworks) "eos/loaddefs-eos" "loaddefs")) |
52 "cus-file" | |
53 "startup" ; For initialization of | 52 "startup" ; For initialization of |
54 ; `emacs-user-extension-dir' | 53 ; `emacs-user-extension-dir' |
55 "misc" | 54 "misc" |
56 ;; (pureload "profile") | 55 ;; (pureload "profile") |
57 (unless-feature mule "help-nomule") | 56 (unless-feature mule "help-nomule") |
78 "easymenu" ; Added for 20.3. | 77 "easymenu" ; Added for 20.3. |
79 "lisp-mode" | 78 "lisp-mode" |
80 "text-mode" | 79 "text-mode" |
81 "fill" | 80 "fill" |
82 "auto-save" ; Added for 20.4 | 81 "auto-save" ; Added for 20.4 |
83 "movemail" ; Added for 21.2 | 82 |
84 (when-feature windows-nt "winnt") | 83 (when-feature windows-nt "winnt") |
85 (when-feature lisp-float-type "float-sup") | 84 (when-feature lisp-float-type "float-sup") |
86 "itimer" ; for vars auto-save-timeout and | 85 "itimer" ; for vars auto-save-timeout and |
87 ; auto-gc-threshold | 86 ; auto-gc-threshold |
88 "itimer-autosave" | 87 "itimer-autosave" |
89 "printer" | |
90 (when-feature toolbar "toolbar") | 88 (when-feature toolbar "toolbar") |
91 (when-feature scrollbar "scrollbar") | 89 (when-feature scrollbar "scrollbar") |
92 (when-feature menubar "menubar") | 90 (when-feature menubar "menubar") |
93 (when-feature dialog "dialog") | 91 (when-feature dialog "dialog") |
94 (when-feature mule "mule-charset") | 92 (when-feature mule "mule-charset") |
95 (when-feature file-coding "coding") | 93 (when-feature file-coding "coding") |
96 (when-feature mule "mule-coding") | 94 (when-feature mule "mule-coding") |
97 ;; Handle I/O of files with extended characters. | 95 ;; Handle I/O of files with extended characters. |
98 (when-feature file-coding "code-files") | 96 (when-feature file-coding "code-files") |
97 (when-feature mule "mule-files") | |
99 ;; Handle process with encoding/decoding non-ascii coding-system. | 98 ;; Handle process with encoding/decoding non-ascii coding-system. |
100 (when-feature file-coding "code-process") | 99 (when-feature file-coding "code-process") |
101 (when-feature mule "mule-help") | 100 (when-feature mule "mule-help") |
102 ;; Load the remaining basic files. | 101 ;; Load the remaining basic files. |
103 (when-feature mule "mule-category") | 102 (when-feature mule "mule-category") |
133 (when-feature mule "mule/greek") ; overloaded in leim/quail | 132 (when-feature mule "mule/greek") ; overloaded in leim/quail |
134 (when-feature mule "hebrew") | 133 (when-feature mule "hebrew") |
135 (when-feature mule "japanese") | 134 (when-feature mule "japanese") |
136 (when-feature mule "korean") | 135 (when-feature mule "korean") |
137 (when-feature mule "misc-lang") | 136 (when-feature mule "misc-lang") |
138 (when-feature mule "thai-xtis-chars") | 137 (when-feature mule "thai-xtis") |
139 (when-feature mule "mule/thai-xtis") ; overloaded in leim/quail | |
140 (when-feature mule "viet-chars") | 138 (when-feature mule "viet-chars") |
141 (when-feature mule "vietnamese") | 139 (when-feature mule "vietnamese") |
142 | 140 |
143 ;; Specialized language support | 141 ;; Specialized language support |
144 (when-feature (and mule CANNA) "canna-leim") | 142 (when-feature (and mule CANNA) "canna-leim") |
156 | 154 |
157 ;; Enable Mule capability for Gnus, mail, etc... | 155 ;; Enable Mule capability for Gnus, mail, etc... |
158 ;; Moved to sunpro-load.el - the default only for Sun. | 156 ;; Moved to sunpro-load.el - the default only for Sun. |
159 ;;(pureload "mime-setup") | 157 ;;(pureload "mime-setup") |
160 ;;; mule-load.el ends here | 158 ;;; mule-load.el ends here |
161 (when-feature (and gutter window-system) "gutter") | |
162 (when-feature window-system "gui") | 159 (when-feature window-system "gui") |
163 (when-feature window-system "mode-motion") | 160 (when-feature window-system "mode-motion") |
164 (when-feature window-system "mouse") | 161 (when-feature window-system "mouse") |
165 "select" | 162 (when-feature window-system "select") |
166 (when-feature dragdrop-api "dragdrop") | 163 (when-feature dragdrop-api "dragdrop") |
167 ;; preload the X code, for faster startup. | 164 ;; preload the X code, for faster startup. |
168 (when-feature (and (not infodock) | 165 (when-feature (and (not infodock) |
169 (or x mswindows) menubar) "menubar-items") | 166 (or x mswindows) menubar) "menubar-items") |
170 (when-feature (and infodock (or x mswindows) menubar) "id-menus") | 167 (when-feature (and infodock (or x mswindows) menubar) "id-menus") |
171 (when-feature (and gutter window-system) "gutter-items") | |
172 (when-feature x "x-faces") | 168 (when-feature x "x-faces") |
173 (when-feature x "x-iso8859-1") | 169 (when-feature x "x-iso8859-1") |
174 (when-feature x "x-mouse") | 170 (when-feature x "x-mouse") |
175 (when-feature x "x-select") | 171 (when-feature x "x-select") |
176 (when-feature (and x scrollbar) "x-scrollbar") | 172 (when-feature (and x scrollbar) "x-scrollbar") |