diff options
Diffstat (limited to 'src')
| -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 | ||