diff options
| author | Richard M. Stallman | 1995-01-17 02:33:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-17 02:33:49 +0000 |
| commit | 1908c565548bf4c72153ffaf9ef382e50164386f (patch) | |
| tree | 9f957fc6d543ebcb96ce803bd1a4bb999e175fbf | |
| parent | 01c386ba5ef79131e7e0dda61138866cc308c934 (diff) | |
| download | emacs-1908c565548bf4c72153ffaf9ef382e50164386f.tar.gz emacs-1908c565548bf4c72153ffaf9ef382e50164386f.zip | |
(command-line-1): Handle -f with kbd macro.
| -rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 54c0b0aa5db..a884e61a183 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -609,7 +609,9 @@ Type \\[describe-distribution] for information on getting the latest version.")) | |||
| 609 | (setq tem (intern argval)) | 609 | (setq tem (intern argval)) |
| 610 | (setq tem (intern (car command-line-args-left))) | 610 | (setq tem (intern (car command-line-args-left))) |
| 611 | (setq command-line-args-left (cdr command-line-args-left))) | 611 | (setq command-line-args-left (cdr command-line-args-left))) |
| 612 | (funcall tem)) | 612 | (if (arrayp (symbol-function tem)) |
| 613 | (command-execute tem) | ||
| 614 | (funcall tem))) | ||
| 613 | ((or (string-equal argi "-l") | 615 | ((or (string-equal argi "-l") |
| 614 | (string-equal argi "-load")) | 616 | (string-equal argi "-load")) |
| 615 | (if argval | 617 | (if argval |