Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d77b70e5
Commit
d77b70e5
authored
Oct 11, 2002
by
Markus Rost
Browse files
*** empty log message ***
parent
56e5818f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
src/ChangeLog
src/ChangeLog
+7
-0
src/emacs.c
src/emacs.c
+5
-3
src/lread.c
src/lread.c
+2
-1
No files found.
src/ChangeLog
View file @
d77b70e5
2002-10-11 Markus Rost <rost@math.ohio-state.edu>
* emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
batch mode).
* lread.c (Fload): Doc fix (load-suffixes).
2002-10-10 Steven Tamm <steventamm@mac.com>
2002-10-10 Steven Tamm <steventamm@mac.com>
* macterm.c (syms_of_macterm, mac_get_mouse_btn): Reversed
* macterm.c (syms_of_macterm, mac_get_mouse_btn): Reversed
...
...
src/emacs.c
View file @
d77b70e5
...
@@ -2302,11 +2302,13 @@ Emacs is running. */);
...
@@ -2302,11 +2302,13 @@ Emacs is running. */);
doc:
/* Non-nil means Emacs is running without interactive terminal. */
);
doc:
/* Non-nil means Emacs is running without interactive terminal. */
);
DEFVAR_LISP
(
"kill-emacs-hook"
,
&
Vkill_emacs_hook
,
DEFVAR_LISP
(
"kill-emacs-hook"
,
&
Vkill_emacs_hook
,
doc:
/* Hook to be run when
ever
kill-emacs is called.
doc:
/* Hook to be run when kill-emacs is called.
Since kill-emacs may be invoked when the terminal is disconnected (or
Since
`
kill-emacs
'
may be invoked when the terminal is disconnected (or
in other similar situations), functions placed on this hook should not
in other similar situations), functions placed on this hook should not
expect to be able to interact with the user. To ask for confirmation,
expect to be able to interact with the user. To ask for confirmation,
see `kill-emacs-query-functions' instead. */
);
see `kill-emacs-query-functions' instead.
The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */
);
Vkill_emacs_hook
=
Qnil
;
Vkill_emacs_hook
=
Qnil
;
empty_string
=
build_string
(
""
);
empty_string
=
build_string
(
""
);
...
...
src/lread.c
View file @
d77b70e5
...
@@ -641,7 +641,8 @@ record_load_unwind (old)
...
@@ -641,7 +641,8 @@ record_load_unwind (old)
DEFUN
(
"load"
,
Fload
,
Sload
,
1
,
5
,
0
,
DEFUN
(
"load"
,
Fload
,
Sload
,
1
,
5
,
0
,
doc
:
/* Execute a file of Lisp code named FILE.
doc
:
/* Execute a file of Lisp code named FILE.
First try FILE with `.elc' appended, then try with `.el',
First try FILE with `.elc' appended, then try with `.el',
then try FILE unmodified. Environment variable references in FILE
then try FILE unmodified (the exact suffixes are determined by
`load-suffixes'). Environment variable references in FILE
are replaced with their values by calling `substitute-in-file-name'.
are replaced with their values by calling `substitute-in-file-name'.
This function searches the directories in `load-path'.
This function searches the directories in `load-path'.
If optional second arg NOERROR is non-nil,
If optional second arg NOERROR is non-nil,
...
...
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