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
c3279ad4
Commit
c3279ad4
authored
Mar 26, 2000
by
Gerd Moellmann
Browse files
(print_object): Use new macros for per-buffer
variables.
parent
6f598a6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/print.c
src/print.c
+4
-4
No files found.
src/print.c
View file @
c3279ad4
...
...
@@ -1772,9 +1772,9 @@ print_object (obj, printcharfun, escapeflag)
case
Lisp_Misc_Buffer_Objfwd
:
strout
(
"#<buffer_objfwd to "
,
-
1
,
-
1
,
printcharfun
,
0
);
print_object
(
*
(
Lisp_Object
*
)((
char
*
)
current_buffer
+
XBUFFER_OBJFWD
(
obj
)
->
offset
),
printcharfun
,
escapeflag
);
print_object
(
BUFFER_LOCAL_VALUE
(
current_buffer
,
XBUFFER_OBJFWD
(
obj
)
->
offset
),
printcharfun
,
escapeflag
);
PRINTCHAR
(
'>'
);
break
;
...
...
@@ -1782,7 +1782,7 @@ print_object (obj, printcharfun, escapeflag)
strout
(
"#<kboard_objfwd to "
,
-
1
,
-
1
,
printcharfun
,
0
);
print_object
(
*
(
Lisp_Object
*
)((
char
*
)
current_kboard
+
XKBOARD_OBJFWD
(
obj
)
->
offset
),
printcharfun
,
escapeflag
);
printcharfun
,
escapeflag
);
PRINTCHAR
(
'>'
);
break
;
...
...
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