Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0703a717
Commit
0703a717
authored
Jun 17, 2011
by
Paul Eggert
Browse files
* category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
parent
d6202519
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/category.h
src/category.h
+1
-1
No files found.
src/ChangeLog
View file @
0703a717
2011-06-17 Paul Eggert <eggert@cs.ucla.edu>
* category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
* buffer.c: Include <verify.h>.
(struct sortvec.priority, struct sortstr.priority):
Now EMACS_INT, not int.
...
...
src/category.h
View file @
0703a717
...
...
@@ -62,7 +62,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#define XCATEGORY_SET XBOOL_VECTOR
#define CATEGORY_SET_P(x) \
(BOOL_VECTOR_P (
(x)
) &&
(EMACS_INT) (
XBOOL_VECTOR (
(x)
)->size
)
== 128)
(BOOL_VECTOR_P (
x
) && XBOOL_VECTOR (
x
)->size == 128)
/* Return a new empty category set. */
#define MAKE_CATEGORY_SET (Fmake_bool_vector (make_number (128), Qnil))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment