summaryrefslogtreecommitdiff
path: root/lisp/startup.el
Commit message (Collapse)AuthorAgeFilesLines
* (command-line-1): Initialize *scratch* withRichard M. Stallman1997-03-231-4/+8
| | | | text saying not to use it for creating a file.
* (command-line-1): Don't run buffer-menu if in batch mode.Richard M. Stallman1997-01-061-4/+5
|
* (command-line-1): Handle --visit and --find.Richard M. Stallman1996-12-261-41/+63
| | | | Handle -- as an option; treat what follows as a file name.
* Change defconsts to defvars.Richard M. Stallman1996-12-161-8/+11
|
* (normal-top-level, command-line, command-line-1):Geoff Voelker1996-12-091-3/+3
| | | | User w32 instead of ms-windows for window-system symbol.
* (normal-top-level, command-line-1, command-line):Richard M. Stallman1996-09-151-3/+3
| | | | Test for ms-windows instead of win32, and use memq.
* (command-line, command-line-1):Richard M. Stallman1996-09-031-11/+17
| | | | Stop processing options if we encounter "--".
* (command-line-1): Rearrange initial screen.Richard M. Stallman1996-08-311-25/+33
|
* (normal-top-level-add-to-load-path):Karl Heuer1996-07-121-1/+1
| | | | Use directory-file-name since load-path elements don't end in /.
* (command-line-x-option-alist): Don't handle -rn.Richard M. Stallman1996-06-281-3/+2
| | | | x-handle-name-rn-switch renamed to x-handle-name-switch.
* (command-line-x-option-alist): -T sets only the title.Richard M. Stallman1996-04-111-2/+2
|
* (command-line-x-option-alist):Richard M. Stallman1996-04-111-1/+2
| | | | --title sets only the title. Allow -title as alias too.
* (command-line-1): Document the C- and M- conventions more completely.Richard M. Stallman1996-04-031-5/+9
|
* Comment change.Richard M. Stallman1996-03-021-1/+1
|
* (command-line-normalize-file-name): Do save-match-data.Richard M. Stallman1996-03-011-8/+9
|
* (command-line-normalize-file-name): Convert /// at beginning to just /.Richard M. Stallman1996-02-281-0/+3
|
* (command-line-normalize-file-name):Richard M. Stallman1996-02-281-1/+3
| | | | Don't collapse // at start of file name.
* (before-init-hook, after-init-hook): Doc fix.Karl Heuer1996-02-211-8/+10
| | | | | (term-setup-hook): Doc fix. (emacs-startup-hook): New defvar.
* (command-line-1): Don't explain recover-session ifKarl Heuer1996-02-141-10/+11
| | | | auto-save-list-file-prefix is nil.
* (command-line): On windows NT, look for .emacs or _emacs.Richard M. Stallman1996-02-121-1/+3
|
* (command-line-normalize-file-name): New function.Richard M. Stallman1996-01-271-2/+10
| | | | (command-line-1): Call it to handle foo//bar in non-Emacs fashion.
* (command-line-1): Update copyright in startup banner.Karl Heuer1996-01-241-1/+1
|
* Update FSF's address.Erik Naggum1996-01-141-2/+3
|
* (normal-top-level): Add ~ at end of auto-save-list-file-prefix.Richard M. Stallman1996-01-021-3/+6
|
* (auto-save-list-file-prefix): Under MS-DOS, use `.s-'.Richard M. Stallman1996-01-011-11/+17
| | | | | | | | | (normal-top-level): Under MS-DOS, use `make-temp-name' to produce a unique `auto-save-list-file-name' (PID is not unique enough). (command-line-1): Delete explicit test for msdos and windowsnt; test just `window-system'. (command-line-x-option-alist): Use x-handle-geometry for geometry options.
* (command-line-x-option-alist): New variable.Richard M. Stallman1995-12-291-0/+68
| | | | (command-line-1): Ignore X options when not using X.
* (command-line-1): Use auto-save-list-file-prefixKarl Heuer1995-12-211-10/+21
| | | | | | | | | | | when checking for existing files. (normal-top-level): Don't set auto-save-list-file-name if auto-save-list-file-prefix is nil. (normal-top-level): Don't set auto-save-list-file-name if it was already set non-nil (by .emacs, for example). (auto-save-list-file-prefix): Doc fix.
* (command-line-1): Mention F10.Richard M. Stallman1995-11-151-1/+1
|
* (command-line-1): Reorganize the initial help output.Richard M. Stallman1995-11-141-14/+17
|
* (command-line): Don't reject unknown args here.Richard M. Stallman1995-11-111-2/+2
| | | | (command-line-1): Detect it here.
* (command-line): Complain about unknown options.Richard M. Stallman1995-11-101-2/+8
| | | | | | (command-line): Handle = in option only if starts with --. (user-mail-address): Doc fix.
* [win32] (normal-top-level, command-line, command-line-1):Geoff Voelker1995-11-071-3/+3
| | | | Test for 'win32 window system as well as 'x.
* (command-line-1): Say how to invoke menu bar, if not X.Richard M. Stallman1995-10-311-2/+9
| | | | (command-line): If not X, do enable menu bar.
* (normal-top-level): Set auto-save-list-file-name later,Richard M. Stallman1995-10-231-8/+8
| | | | after calling command-line.
* (command-line): Init user-mail-address here, after reading init file.Richard M. Stallman1995-10-081-3/+6
| | | | (normal-top-level): Not here.
* (auto-save-list-file-prefix): New variable.Richard M. Stallman1995-10-041-2/+8
| | | | (normal-top-level): Use it.
* (command-line-1): --insert: Don't complain on --insert=file.Erik Naggum1995-09-251-2/+2
|
* (command-line-1): --eval: Don't print the value.Erik Naggum1995-09-251-3/+3
|
* (command-line-1): Add option --eval to evalute anRichard M. Stallman1995-08-141-1/+10
| | | | expression on the command line and print the result.
* (command-line-1): Fix previous change.Richard M. Stallman1995-08-071-1/+1
|
* (command-line-1): Mention recover-session if there's a .saves file.Richard M. Stallman1995-08-031-0/+6
|
* (normal-top-level): Don't use mail-host-addressKarl Heuer1995-07-171-3/+3
| | | | for auto-save-list-file-name.
* Update copyright year in message.Richard M. Stallman1995-06-281-2/+2
|
* (command-line): Extract arg value properly for -u.Richard M. Stallman1995-06-271-2/+2
|
* (precompute-menubar-bindings): While dumping,Richard M. Stallman1995-06-211-1/+4
| | | | garbage-collect after each menu.
* (normal-top-level, command-line-1):Richard M. Stallman1995-06-171-11/+13
| | | | | | Call precompute-menubar-bindings only if using x. (precompute-menubar-bindings): Don't check for x here. Set define-key-rebound-commands to t.
* (command-line): Handle nil command-line-args.Geoff Voelker1995-05-261-1/+1
|
* Comment change.Richard M. Stallman1995-04-301-38/+84
|
* (normal-top-level): Set auto-save-list-file-name.Richard M. Stallman1995-04-301-0/+7
|
* (command-line-1): Implement -L/--directory option.Richard M. Stallman1995-04-301-3/+27
|