[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/record 7f9b0eb 06/10: Use sizeof to get length of
From: |
Lars Brinkhoff |
Subject: |
[Emacs-diffs] scratch/record 7f9b0eb 06/10: Use sizeof to get length of cl-struct prefix. |
Date: |
Sun, 19 Mar 2017 05:34:12 -0400 (EDT) |
branch: scratch/record
commit 7f9b0eb8be0fadd94949560fbdcaa4afad642610
Author: Lars Brinkhoff <address@hidden>
Commit: Lars Brinkhoff <address@hidden>
Use sizeof to get length of cl-struct prefix.
Also replace a `0' with `false'.
---
src/data.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/data.c b/src/data.c
index 5a91d92..0e7f4b4 100644
--- a/src/data.c
+++ b/src/data.c
@@ -201,8 +201,7 @@ DEFUN ("null", Fnull, Snull, 1, 1, 0,
return Qnil;
}
-static const char *old_struct_prefix = "cl-struct-";
-static int old_struct_prefix_length;
+static const char old_struct_prefix[] = "cl-struct-";
static int
vector_struct_p (Lisp_Object object)
@@ -214,7 +213,7 @@ vector_struct_p (Lisp_Object object)
return SYMBOLP (type)
&& strncmp (SDATA (SYMBOL_NAME (type)),
old_struct_prefix,
- old_struct_prefix_length) == 0;
+ sizeof old_struct_prefix - 1) == 0;
}
static Lisp_Object
@@ -3899,8 +3898,7 @@ syms_of_data (void)
DEFVAR_BOOL ("old-struct-compat", old_struct_compat,
doc: /* Non-nil means hack for old structs is in effect. */);
- old_struct_compat = 0;
- old_struct_prefix_length = strlen (old_struct_prefix);
+ old_struct_compat = false;
DEFSYM (Qwatchers, "watchers");
DEFSYM (Qmakunbound, "makunbound");
- [Emacs-diffs] branch scratch/record created (now 5369952), Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 050463b 04/10: Test cases., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 7f9b0eb 06/10: Use sizeof to get length of cl-struct prefix.,
Lars Brinkhoff <=
- [Emacs-diffs] scratch/record f89ce93 09/10: Make it possible to compare records with `equal'., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record b1d61ca 02/10: Update cl-defstruct to use records., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 97215ed 07/10: Better doc string for `old-struct-compat'., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 4c92cb0 03/10: Make EIEIO use records., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 5369952 10/10: Fix cl-print-object to find the object class the new way., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 7dfaded 01/10: Add record objects with user-defined types., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 7f51870 08/10: Better doc strings for `make-record', `record', and `copy-record'., Lars Brinkhoff, 2017/03/19
- [Emacs-diffs] scratch/record 0eaf0e6 05/10: Backward compatibility with pre-existing struct instances., Lars Brinkhoff, 2017/03/19