Changeset 4079 for trunk/lisp/startup.el
- Timestamp:
- 05/13/06 11:31:18 (3 years ago)
- Files:
-
- trunk/lisp/startup.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/startup.el
r4073 r4079 821 821 init-file-user) 822 822 :error) 823 (if (file-directory-p (expand-file-name (concat "~" init-file-user))) 823 (if (file-directory-p (expand-file-name 824 ;; We don't support ~USER on MS-Windows except 825 ;; for the current user, and always load .emacs 826 ;; from the current user's home directory (see 827 ;; below). So always check "~", even if invoked 828 ;; with "-u USER", or if $USER or $LOGNAME are 829 ;; set to something different. 830 (if (eq system-type 'windows-nt) 831 "~" 832 (concat "~" init-file-user)))) 824 833 nil 825 834 (display-warning 'initialization … … 1299 1308 (erase-buffer) 1300 1309 (if pure-space-overflow 1301 (insert "Warning Warning Pure space overflow Warning Warning\n")) 1310 (insert "\ 1311 Warning Warning!!! Pure space overflow !!!Warning Warning 1312 \(See the node Pure Storage in the Lisp manual for details.)\n")) 1302 1313 (fancy-splash-head) 1303 1314 (apply #'fancy-splash-insert text) … … 1356 1367 buffer-undo-list t 1357 1368 mode-line-format (propertize "---- %b %-" 1358 'face ' (:weight bold))1369 'face 'mode-line-buffer-id) 1359 1370 fancy-splash-stop-time (+ (float-time) 1360 1371 fancy-splash-max-time) … … 1405 1416 (set (make-local-variable 'tab-width) 8) 1406 1417 (set (make-local-variable 'mode-line-format) 1407 (propertize "---- %b %-" 'face ' (:weight bold)))1418 (propertize "---- %b %-" 'face 'mode-line-buffer-id)) 1408 1419 1409 1420 (if pure-space-overflow 1410 (insert "Warning Warning Pure space overflow Warning Warning\n")) 1421 (insert "\ 1422 Warning Warning!!! Pure space overflow !!!Warning Warning 1423 \(See the node Pure Storage in the Lisp manual for details.)\n")) 1411 1424 1412 1425 ;; The convention for this piece of code is that … … 1621 1634 (display-warning 1622 1635 'initialization 1623 "Building Emacs overflowed pure space. See \"(elisp)Building Emacs\" for more information." 1624 ;; FIXME: Tell the user what kind of problems are possible and how to fix 1625 ;; the overflow. 1636 "Building Emacs overflowed pure space. (See the node Pure Storage in the Lisp manual for details.)" 1626 1637 :warning)) 1627 1638
