diff options
| author | Dmitry Antipov | 2012-12-26 19:46:51 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-12-26 19:46:51 +0400 |
| commit | 8855dfa5d5ed12aafbe4f8d0185bd74e82437edf (patch) | |
| tree | 72d1df04e6c266411fa6c6ed45de76e77565e00b /src/print.c | |
| parent | 6cda572a0f7da777cea9680131aa79be3f9be999 (diff) | |
| download | emacs-8855dfa5d5ed12aafbe4f8d0185bd74e82437edf.tar.gz emacs-8855dfa5d5ed12aafbe4f8d0185bd74e82437edf.zip | |
* print.c (print_object): Fix last change.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index b89d5685fba..e3f6b01f50c 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2054,7 +2054,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag | |||
| 2054 | { | 2054 | { |
| 2055 | Lisp_Object maybe = ((Lisp_Object *) v->pointer)[i]; | 2055 | Lisp_Object maybe = ((Lisp_Object *) v->pointer)[i]; |
| 2056 | 2056 | ||
| 2057 | if (valid_lisp_object_p (maybe)) | 2057 | if (valid_lisp_object_p (maybe) > 0) |
| 2058 | { | 2058 | { |
| 2059 | PRINTCHAR (' '); | 2059 | PRINTCHAR (' '); |
| 2060 | print_object (maybe, printcharfun, escapeflag); | 2060 | print_object (maybe, printcharfun, escapeflag); |