aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2022-08-19 16:55:19 +0300
committerEli Zaretskii2022-08-19 16:55:19 +0300
commit6a1e3e86842676b39ca6aa5ae986f1ea734fd264 (patch)
tree0496b3cccf7774a21f814030bd8a7b20ed47f19d /src
parent962cb44eea43a0e5591788a218813ac3a8e57181 (diff)
downloademacs-6a1e3e86842676b39ca6aa5ae986f1ea734fd264.tar.gz
emacs-6a1e3e86842676b39ca6aa5ae986f1ea734fd264.zip
; * src/editfns.c (Fline_beginning_position): Remove redundant parens.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 1e07b0b6557..16262381999 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -759,7 +759,7 @@ boundaries, bind `inhibit-field-text-motion' to t.
759This function does not move point. */) 759This function does not move point. */)
760 (Lisp_Object n) 760 (Lisp_Object n)
761{ 761{
762 ptrdiff_t count, charpos = (bol (n, &count)); 762 ptrdiff_t count, charpos = bol (n, &count);
763 /* Return END constrained to the current input field. */ 763 /* Return END constrained to the current input field. */
764 return Fconstrain_to_field (make_fixnum (charpos), make_fixnum (PT), 764 return Fconstrain_to_field (make_fixnum (charpos), make_fixnum (PT),
765 count != 0 ? Qt : Qnil, 765 count != 0 ? Qt : Qnil,