]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xdisp.c (get_locked_narrowing_begv): Minor change.
authorGregory Heytings <gregory@heytings.org>
Sun, 27 Nov 2022 10:25:19 +0000 (10:25 +0000)
committerGregory Heytings <gregory@heytings.org>
Sun, 27 Nov 2022 10:26:24 +0000 (11:26 +0100)
src/editfns.c
src/xdisp.c

index a3a8f3edefdb993332c5a2dbd2376fbc9a2c7aaa..b364f441b53b2ac515e91550ebb3fa9d5366c9f4 100644 (file)
@@ -2786,7 +2786,7 @@ reset_outermost_narrowings (void)
 }
 
 /* Helper functions to save and restore the narrowing locks of the
-   current buffer in save-restriction.  */
+   current buffer in Fsave_restriction.  */
 static Lisp_Object
 narrowing_locks_save (void)
 {
index 138c364679047f3d48bf98090e8dab49c98a24e0..331fbe021283367cc5da7bff46358842c96460dc 100644 (file)
@@ -3538,9 +3538,8 @@ get_locked_narrowing_begv (ptrdiff_t pos)
 {
   if (long_line_locked_narrowing_region_size == 0)
     return BEGV;
-  int begv;
   int len = long_line_locked_narrowing_region_size / 2;
-  begv = max (pos - len, BEGV);
+  int begv = max (pos - len, BEGV);
   int limit = long_line_locked_narrowing_bol_search_limit;
   while (limit)
     {