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
92d2947b
Commit
92d2947b
authored
Dec 27, 2004
by
Richard M. Stallman
Browse files
Comment changes.
parent
62a29071
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
src/ChangeLog
src/ChangeLog
+21
-0
src/lisp.h
src/lisp.h
+8
-0
No files found.
src/ChangeLog
View file @
92d2947b
2004-12-27 Richard M. Stallman <rms@gnu.org>
* xdisp.c (single_display_spec_string_p): Renamed from
single_display_prop_string_p.
(single_display_spec_intangible_p): Renamed from
single_display_prop_intangible_p.
(handle_single_display_spec): Renamed from handle_single_display_prop.
Rewritten to be easier to understand.
* Change in load-history format. Functions now get (defun . NAME),
and variables get just NAME.
* data.c (Fdefalias): Use (defun . FN_NAME) in LOADHIST_ATTACH.
* eval.c (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
(Fdefvaralias, Fdefvar, Fdefconst): Use just SYM in LOADHIST_ATTACH.
(Qdefvar): Var deleted.
(syms_of_eval): Don't initialze it.
* lread.c (syms_of_lread) <load-history>: Doc fix.
2004-12-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xmenu.c (popup_get_selection): Pop down on C-g.
...
...
src/lisp.h
View file @
92d2947b
...
...
@@ -1671,8 +1671,16 @@ extern void defvar_kboard P_ ((char *, int));
#define DEFVAR_LISP_NOPRO(lname, vname, doc) defvar_lisp_nopro (lname, vname)
#define DEFVAR_BOOL(lname, vname, doc) defvar_bool (lname, vname)
#define DEFVAR_INT(lname, vname, doc) defvar_int (lname, vname)
/* TYPE is nil for a general Lisp variable.
An integer specifies a type; then only LIsp values
with that type code are allowed (except that nil is allowed too).
LNAME is the LIsp-level variable name.
VNAME is the name of the buffer slot.
DOC is a dummy where you write the doc string as a comment. */
#define DEFVAR_PER_BUFFER(lname, vname, type, doc) \
defvar_per_buffer (lname, vname, type, 0)
#define DEFVAR_KBOARD(lname, vname, doc) \
defvar_kboard (lname, \
(int)((char *)(¤t_kboard->vname) \
...
...
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