Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
26780e5b
Commit
26780e5b
authored
Nov 26, 2001
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(command-line-1): Don't try to call process-list if it is not fboundp.
parent
bc5c763a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/startup.el
lisp/startup.el
+3
-2
No files found.
lisp/ChangeLog
View file @
26780e5b
2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
* startup.el (command-line-1): Don't try to call process-list if
it is not fboundp.
2001-11-26 Sam Steingold <sds@gnu.org>
* frame.el (show-trailing-whitespace): Remove :set argument (the
...
...
lisp/startup.el
View file @
26780e5b
...
...
@@ -1492,7 +1492,7 @@ where FACE is a valid face specification, as it can be used with
;; show user what they all are. But leave the last one current.
(and (> file-count 2)
(not noninteractive)
(not inhibit-startup-buffer-menu)
(not inhibit-startup-buffer-menu)
(or (get-buffer-window first-file-buffer)
(list-buffers))))
...
...
@@ -1503,7 +1503,8 @@ where FACE is a valid face specification, as it can be used with
(string= (buffer-name) "
*scratch*
")
;; Don't display startup screen if init file
;; has started some sort of server.
(null (process-list))
(not (and (fboundp 'process-list)
(process-list)))
;; Don't display startup screen if init file
;; has inserted some text in *scratch*.
(= 0 (buffer-size)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment