diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-27 12:50:13 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-27 12:50:13 +0000 |
commit | f6cd05276dad073b9299368e33ba02825bdae048 (patch) | |
tree | f9faf6cba098aab8dfdcc933fd75d5273d7e1e04 /src/print.c | |
parent | ddebaaa9da7734fff3f9f4a847670a63a876ae71 (diff) | |
download | emacs-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.c | 4 |
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; |