emacs-diffs
[Top][All Lists]
Advanced

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

master 6a1e3e8684: ; * src/editfns.c (Fline_beginning_position): Remove


From: Eli Zaretskii
Subject: master 6a1e3e8684: ; * src/editfns.c (Fline_beginning_position): Remove redundant parens.
Date: Fri, 19 Aug 2022 09:55:53 -0400 (EDT)

branch: master
commit 6a1e3e86842676b39ca6aa5ae986f1ea734fd264
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; * src/editfns.c (Fline_beginning_position): Remove redundant parens.
---
 src/editfns.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/editfns.c b/src/editfns.c
index 1e07b0b655..1626238199 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -759,7 +759,7 @@ boundaries, bind `inhibit-field-text-motion' to t.
 This function does not move point.  */)
   (Lisp_Object n)
 {
-  ptrdiff_t count, charpos = (bol (n, &count));
+  ptrdiff_t count, charpos = bol (n, &count);
   /* Return END constrained to the current input field.  */
   return Fconstrain_to_field (make_fixnum (charpos), make_fixnum (PT),
                              count != 0 ? Qt : Qnil,



reply via email to

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