diff options
| author | Michael I. Bushnell | 1991-08-20 20:21:23 +0000 |
|---|---|---|
| committer | Michael I. Bushnell | 1991-08-20 20:21:23 +0000 |
| commit | 9198945a5b61f749a2a97c0e7f6fdf6a73ea3e6a (patch) | |
| tree | 56d3a54b746e9fd60504cfedb4426a22702d9bbb | |
| parent | f595ecef54c41a852d783092d60c1da6443e9295 (diff) | |
| download | emacs-9198945a5b61f749a2a97c0e7f6fdf6a73ea3e6a.tar.gz emacs-9198945a5b61f749a2a97c0e7f6fdf6a73ea3e6a.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/frame.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index a9c834794ed..79df109bfd4 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -99,9 +99,10 @@ These supercede the values given in default-screen-alist.") | |||
| 99 | 99 | ||
| 100 | ;; No, we're not running a window system. Arrange to cause errors. | 100 | ;; No, we're not running a window system. Arrange to cause errors. |
| 101 | (setq screen-creation-function | 101 | (setq screen-creation-function |
| 102 | (lambda (parameters) | 102 | (function |
| 103 | (error | 103 | (lambda (parameters) |
| 104 | "Can't create multiple screens without a window system."))))) | 104 | (error |
| 105 | "Can't create multiple screens without a window system.")))))) | ||
| 105 | 106 | ||
| 106 | ;;; startup.el calls this function after loading the user's init file. | 107 | ;;; startup.el calls this function after loading the user's init file. |
| 107 | ;;; If we created a minibuffer before knowing if we had permission, we | 108 | ;;; If we created a minibuffer before knowing if we had permission, we |