Follow Glenn's lead and update format of Copyright.
[bpt/emacs.git] / src / print.c
index 90b4649..738f4f6 100644 (file)
@@ -1,7 +1,7 @@
 /* Lisp object printing and output streams.
    Copyright (C) 1985, 1986, 1988, 1993, 1994, 1995, 1997,
                  1998, 1999, 2000, 2001, 2002, 2003, 2004,
-                 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+                 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -1968,12 +1968,7 @@ print_object (obj, printcharfun, escapeflag)
            {
              QUIT;
              c = XBOOL_VECTOR (obj)->data[i];
-             if (! ASCII_BYTE_P (c))
-               {
-                 sprintf (buf, "\\%03o", c);
-                 strout (buf, -1, -1, printcharfun, 0);
-               }
-             else if (c == '\n' && print_escape_newlines)
+             if (c == '\n' && print_escape_newlines)
                {
                  PRINTCHAR ('\\');
                  PRINTCHAR ('n');