diff options
| author | Eli Zaretskii | 2019-09-14 17:04:30 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-09-14 17:04:30 +0300 |
| commit | 49a4b86925f1338268a2e79d0ef164a3cb368ec2 (patch) | |
| tree | d7b65f62a76be159da875eed4b27bb99acc54a4e /src | |
| parent | 5f7531f9e9b1d3d645d64937a9d5df80fc5b1222 (diff) | |
| download | emacs-49a4b86925f1338268a2e79d0ef164a3cb368ec2.tar.gz emacs-49a4b86925f1338268a2e79d0ef164a3cb368ec2.zip | |
* src/print.c (PRINT_CIRCLE_CANDIDATE_P): Fix a thinko. (Bug#36566)
Diffstat (limited to 'src')
| -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 c870aa5a088..7e5aed82877 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1151,8 +1151,8 @@ print (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag) | |||
| 1151 | #define PRINT_CIRCLE_CANDIDATE_P(obj) \ | 1151 | #define PRINT_CIRCLE_CANDIDATE_P(obj) \ |
| 1152 | ((STRINGP (obj) \ | 1152 | ((STRINGP (obj) \ |
| 1153 | && (string_intervals (obj) \ | 1153 | && (string_intervals (obj) \ |
| 1154 | || print_depth > 1 \ | 1154 | || print_depth > 1 \ |
| 1155 | || Vprint_continuous_numbering)) \ | 1155 | || !NILP (Vprint_continuous_numbering))) \ |
| 1156 | || CONSP (obj) \ | 1156 | || CONSP (obj) \ |
| 1157 | || (VECTORLIKEP (obj) \ | 1157 | || (VECTORLIKEP (obj) \ |
| 1158 | && (VECTORP (obj) || COMPILEDP (obj) \ | 1158 | && (VECTORP (obj) || COMPILEDP (obj) \ |