summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-03-27 12:50:13 +0000
committerGerd Moellmann <gerd@gnu.org>2000-03-27 12:50:13 +0000
commitf6cd05276dad073b9299368e33ba02825bdae048 (patch)
treef9faf6cba098aab8dfdcc933fd75d5273d7e1e04 /src/print.c
parentddebaaa9da7734fff3f9f4a847670a63a876ae71 (diff)
downloademacs-f6cd05276dad073b9299368e33ba02825bdae048.tar.gz
emacs-f6cd05276dad073b9299368e33ba02825bdae048.tar.bz2
emacs-f6cd05276dad073b9299368e33ba02825bdae048.zip
Use new macro names
for handling per-buffer variables.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index b53d137dd69..d56dcafbd64 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1772,8 +1772,8 @@ print_object (obj, printcharfun, escapeflag)
case Lisp_Misc_Buffer_Objfwd:
strout ("#<buffer_objfwd to ", -1, -1, printcharfun, 0);
- print_object (BUFFER_LOCAL_VALUE (current_buffer,
- XBUFFER_OBJFWD (obj)->offset),
+ print_object (PER_BUFFER_VALUE (current_buffer,
+ XBUFFER_OBJFWD (obj)->offset),
printcharfun, escapeflag);
PRINTCHAR ('>');
break;