projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5276c08
)
; * src/fns.c (Fstring_lessp): Fix coding style.
author
Po Lu
<luangruo@yahoo.com>
Sat, 1 Apr 2023 06:24:22 +0000
(14:24 +0800)
committer
Po Lu
<luangruo@yahoo.com>
Sat, 1 Apr 2023 06:24:22 +0000
(14:24 +0800)
src/fns.c
patch
|
blob
|
history
diff --git
a/src/fns.c
b/src/fns.c
index 90bb3fac17853e849285a86430dfa09d0c063abd..354b3415ec5832ba4388c3802d13390035de2423 100644
(file)
--- a/
src/fns.c
+++ b/
src/fns.c
@@
-512,8
+512,9
@@
Symbols are also allowed; their print names are used instead. */)
int ws = sizeof (size_t);
const char *w1 = SSDATA (string1);
const char *w2 = SSDATA (string2);
- while (b < nb - ws + 1 && load_unaligned_size_t (w1 + b)
- == load_unaligned_size_t (w2 + b))
+ while (b < nb - ws + 1
+ && (load_unaligned_size_t (w1 + b)
+ == load_unaligned_size_t (w2 + b)))
b += ws;
}
#endif