summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2008-02-07 12:47:00 +0000
committerJan Djärv <jan.h.d@swipnet.se>2008-02-07 12:47:00 +0000
commit92413ef3a119c29af24901e66b393d3c69cc83b5 (patch)
tree597e3de17cbc3588975e040fdc239331b439d066 /src/buffer.h
parent03fa5713cc5eb2226a5ca3fb1ce59a9e9f46ffae (diff)
downloademacs-92413ef3a119c29af24901e66b393d3c69cc83b5.tar.gz
Use "do...while (0)", not "if (1)..else" in macro definitions.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 87d646f35fe..8345c8fa06f 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -266,7 +266,7 @@ extern void enlarge_buffer_text P_ ((struct buffer *, int));
and store the charpos in CHARPOS and the bytepos in BYTEPOS. */
#define DECODE_POSITION(charpos, bytepos, pos) \
-if (1) \
+do \
{ \
Lisp_Object __pos = (pos); \
if (NUMBERP (__pos)) \
@@ -282,7 +282,7 @@ if (1) \
else \
wrong_type_argument (Qinteger_or_marker_p, __pos); \
} \
-else
+while (0)
/* Return the address of byte position N in current buffer. */