diff options
| author | Karl Heuer | 1994-11-15 22:54:15 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-11-15 22:54:15 +0000 |
| commit | 8c8c10fe07eb412a5e7d41bb797557cf2c811431 (patch) | |
| tree | 5b125fd29b42e7efcbdfa46418b2f346907ea49f /src/textprop.c | |
| parent | e1befa751b517f76e629be225ac9b8858b6252f3 (diff) | |
| download | emacs-8c8c10fe07eb412a5e7d41bb797557cf2c811431.tar.gz emacs-8c8c10fe07eb412a5e7d41bb797557cf2c811431.zip | |
(PLIST_ELT_P): Avoid assignments in arguments to a type-test macro.
Diffstat (limited to 'src/textprop.c')
| -rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c index 2e76f0c17ab..cc252dacef1 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -61,7 +61,7 @@ Lisp_Object Qfront_sticky, Qrear_nonsticky; | |||
| 61 | /* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to | 61 | /* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to |
| 62 | the o1's cdr. Otherwise, return zero. This is handy for | 62 | the o1's cdr. Otherwise, return zero. This is handy for |
| 63 | traversing plists. */ | 63 | traversing plists. */ |
| 64 | #define PLIST_ELT_P(o1, o2) (CONSP (o1) && CONSP ((o2) = XCONS (o1)->cdr)) | 64 | #define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2))) |
| 65 | 65 | ||
| 66 | Lisp_Object Vinhibit_point_motion_hooks; | 66 | Lisp_Object Vinhibit_point_motion_hooks; |
| 67 | 67 | ||