emacs-diffs
[Top][All Lists]
Advanced

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

master 0a47a5a4bef 2/6: Omit some parens


From: Paul Eggert
Subject: master 0a47a5a4bef 2/6: Omit some parens
Date: Sat, 20 Jan 2024 20:29:04 -0500 (EST)

branch: master
commit 0a47a5a4bef0a33c012302346685ecab861cc306
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Omit some parens
    
    * src/lisp.h (XBARE_SYMBOL, XSYMBOL): Omit parentheses that are no
    longer needed now that we have symbols with positions and these
    symbols are never macros.
---
 src/lisp.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lisp.h b/src/lisp.h
index d9448f476e7..e25d990e1e9 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1145,7 +1145,7 @@ XSYMBOL_WITH_POS (Lisp_Object a)
 }
 
 INLINE struct Lisp_Symbol * ATTRIBUTE_NO_SANITIZE_UNDEFINED
-(XBARE_SYMBOL) (Lisp_Object a)
+XBARE_SYMBOL (Lisp_Object a)
 {
   eassert (BARE_SYMBOL_P (a));
   intptr_t i = (intptr_t) XUNTAG (a, Lisp_Symbol, struct Lisp_Symbol);
@@ -1154,7 +1154,7 @@ INLINE struct Lisp_Symbol * 
ATTRIBUTE_NO_SANITIZE_UNDEFINED
 }
 
 INLINE struct Lisp_Symbol * ATTRIBUTE_NO_SANITIZE_UNDEFINED
-(XSYMBOL) (Lisp_Object a)
+XSYMBOL (Lisp_Object a)
 {
   eassert (SYMBOLP ((a)));
   if (!symbols_with_pos_enabled || BARE_SYMBOL_P (a))



reply via email to

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