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
76b92fee
Commit
76b92fee
authored
Dec 08, 2012
by
Christopher Schmidt
Committed by
Chong Yidong
Dec 08, 2012
Browse files
* lread.c (Vload_source_file_function): Doc fix.
Fixes: debbugs:11647
parent
8d43bd30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
+14
-6
src/ChangeLog
src/ChangeLog
+4
-0
src/lread.c
src/lread.c
+10
-6
No files found.
src/ChangeLog
View file @
76b92fee
2012-12-08 Christopher Schmidt <christopher@ch.ristopher.com>
* lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2012-12-07 Eli Zaretskii <eliz@gnu.org>
* indent.c (Fvertical_motion): If a display string will be
...
...
src/lread.c
View file @
76b92fee
...
...
@@ -4518,12 +4518,16 @@ The default is nil, which means use the function `read'. */);
Vload_read_function
=
Qnil
;
DEFVAR_LISP
(
"load-source-file-function"
,
Vload_source_file_function
,
doc:
/* Function called in `load' for loading an Emacs Lisp source file.
This function is for doing code conversion before reading the source file.
If nil, loading is done without any code conversion.
Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where
FULLNAME is the full name of FILE.
See `load' for the meaning of the remaining arguments. */
);
doc:
/* Function called in `load' to load an Emacs Lisp source file.
The value should be a function for doing code conversion before
reading a source file. It can also be nil, in which case loading is
done without any code conversion.
If the value is a function, it is called with four arguments,
FULLNAME, FILE, NOERROR, NOMESSAGE. FULLNAME is the absolute name of
the file to load, FILE is the non-absolute name (for messages etc.),
and NOERROR and NOMESSAGE are the corresponding arguments passed to
`load'. The function should return t if the file was loaded. */
);
Vload_source_file_function
=
Qnil
;
DEFVAR_BOOL
(
"load-force-doc-strings"
,
load_force_doc_strings
,
...
...
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