aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index c1b60c97d9e..5643ff06774 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1882,7 +1882,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
1882 } 1882 }
1883 else if (BUFFERP (obj)) 1883 else if (BUFFERP (obj))
1884 { 1884 {
1885 if (NILP (BVAR (XBUFFER (obj), name))) 1885 if (!BUFFER_LIVE_P (XBUFFER (obj)))
1886 strout ("#<killed buffer>", -1, -1, printcharfun); 1886 strout ("#<killed buffer>", -1, -1, printcharfun);
1887 else if (escapeflag) 1887 else if (escapeflag)
1888 { 1888 {