Mercurial > hg > xemacs-beta
changeset 4960:45b6288416e3
slight cleanup, move EXFUN of regexp-quote to lisp.h
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-29 Ben Wing <ben@xemacs.org>
* lisp.h:
* objects.h (set_face_boolean_attached_to):
Use lisp.h for EXFUN of Fregexp_quote, that's what it's for.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Fri, 29 Jan 2010 23:38:50 -0600 |
parents | bd169a24a554 |
children | b90f8cf474e0 |
files | src/ChangeLog src/lisp.h src/objects.h |
diffstat | 3 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Thu Jan 28 04:27:30 2010 -0600 +++ b/src/ChangeLog Fri Jan 29 23:38:50 2010 -0600 @@ -1,3 +1,9 @@ +2010-01-29 Ben Wing <ben@xemacs.org> + + * lisp.h: + * objects.h (set_face_boolean_attached_to): + Use lisp.h for EXFUN of Fregexp_quote, that's what it's for. + 2010-01-28 Ben Wing <ben@xemacs.org> * syswindows.h:
--- a/src/lisp.h Thu Jan 28 04:27:30 2010 -0600 +++ b/src/lisp.h Fri Jan 29 23:38:50 2010 -0600 @@ -5464,6 +5464,7 @@ EXFUN (Fskip_chars_backward, 3); EXFUN (Fskip_chars_forward, 3); EXFUN (Fstring_match, 4); +EXFUN (Fregexp_quote, 1); struct re_pattern_buffer; struct re_registers;
--- a/src/objects.h Thu Jan 28 04:27:30 2010 -0600 +++ b/src/objects.h Fri Jan 29 23:38:50 2010 -0600 @@ -76,8 +76,4 @@ void set_face_boolean_attached_to (Lisp_Object obj, Lisp_Object face, Lisp_Object property); -/* Defined in search.c, used in mule-charset.c; slightly ugly to declare it - here, but oh well. */ -EXFUN (Fregexp_quote, 1); - #endif /* INCLUDED_objects_h_ */