]> git.eshelyaron.com Git - emacs.git/commitdiff
Document the new deafault value of 'load-read-function'
authorEli Zaretskii <eliz@gnu.org>
Wed, 13 Jan 2016 18:19:00 +0000 (20:19 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 13 Jan 2016 18:19:00 +0000 (20:19 +0200)
* doc/lispref/loading.texi (How Programs Do Loading): Document the
change in the default value of 'load-read-function'.

doc/lispref/loading.texi
etc/NEWS

index cb5c7012c165103d612335ebcf1f826eddc8ae31..18e67f1abfed7d6dc7472b5302c8616d53d7a249 100644 (file)
@@ -202,8 +202,8 @@ This variable specifies an alternate expression-reading function for
 @code{load} and @code{eval-region} to use instead of @code{read}.
 The function should accept one argument, just as @code{read} does.
 
-Normally, the variable's value is @code{nil}, which means those
-functions should use @code{read}.
+By default, this variable's value is @code{read}.  @xref{Input
+Functions}.
 
 Instead of using this variable, it is cleaner to use another, newer
 feature: to pass the function as the @var{read-function} argument to
index 88d0604cedfc69bf111b0f69ed84f333a8ce2519..076835c3d20beb6191c3e21a847fd6895059ab3d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1345,7 +1345,9 @@ commands other than the predefined `C-u'.
 These allow to convert between buffer positions and the corresponding
 file byte offsets, given the file's encoding.
 
++++
 ** The default value of `load-read-function' is now `read'.
+Previously, the default value of `nil' implied using `read'.
 
 ** New hook `pre-redisplay-functions', a bit easier to use than pre-redisplay-function.