emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 919f3a7aae0 1/5: Merge from origin/emacs-29


From: Eli Zaretskii
Subject: master 919f3a7aae0 1/5: Merge from origin/emacs-29
Date: Sat, 3 Jun 2023 05:51:57 -0400 (EDT)

branch: master
commit 919f3a7aae0481bdfe732eb84ded081e0d89e6c1
Merge: f1fd3d26062 95ee5477e16
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Merge from origin/emacs-29
    
    95ee5477e16 ; * src/lread.c (read0, skip_lazy_string): Fix commentary...
---
 src/lread.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lread.c b/src/lread.c
index 34a5cdfd36c..0ee208b7cba 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3403,7 +3403,7 @@ read_bool_vector (Lisp_Object readcharfun)
 
 /* Skip (and optionally remember) a lazily-loaded string
    preceded by "#@".  Return true if this was a normal skip,
-   false if we read #@00 (which skips to EOB).  */
+   false if we read #@00 (which skips to EOB/EOF).  */
 static bool
 skip_lazy_string (Lisp_Object readcharfun)
 {
@@ -3940,7 +3940,7 @@ read0 (Lisp_Object readcharfun, bool locate_syms)
               and function definitions that can be loaded lazily.  */
            if (skip_lazy_string (readcharfun))
              goto read_obj;
-           obj = Qnil;       /* #@00 skips to EOB and yields nil.  */
+           obj = Qnil;       /* #@00 skips to EOB/EOF and yields nil.  */
            break;
 
          case '$':



reply via email to

[Prev in Thread] Current Thread [Next in Thread]