aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-06-15 20:49:02 +0000
committerKarl Heuer1995-06-15 20:49:02 +0000
commite3d48049dca1f70653b683040c675abd1f62091c (patch)
tree4d5302dadc9657df7317742221791b971e60c2e5
parent2147fb50c482582d33be0bb30dbc8a4b62b2ecff (diff)
downloademacs-e3d48049dca1f70653b683040c675abd1f62091c.tar.gz
emacs-e3d48049dca1f70653b683040c675abd1f62091c.zip
(enum pvec_type): Don't use trailing comma.
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5ec1307ed05..a331d897ec6 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -234,7 +234,7 @@ enum pvec_type
234 PVEC_WINDOW_CONFIGURATION = 0x2000, 234 PVEC_WINDOW_CONFIGURATION = 0x2000,
235 PVEC_SUBR = 0x4000, 235 PVEC_SUBR = 0x4000,
236 PVEC_TYPE_MASK = 0x7f00, 236 PVEC_TYPE_MASK = 0x7f00,
237 PVEC_FLAG = PSEUDOVECTOR_FLAG, 237 PVEC_FLAG = PSEUDOVECTOR_FLAG
238}; 238};
239 239
240/* For convenience, we also store the number of elements in these bits. */ 240/* For convenience, we also store the number of elements in these bits. */