diff options
| author | Miles Bader | 2007-08-13 13:41:28 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-13 13:41:28 +0000 |
| commit | 37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch) | |
| tree | 7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /src/print.c | |
| parent | 031b6333283be57d971e557b83da31c6be937b0a (diff) | |
| parent | 9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff) | |
| download | emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.tar.gz emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-851
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/print.c b/src/print.c index f7060024f32..cae80d1acfe 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -93,8 +93,8 @@ Lisp_Object Vfloat_output_format, Qfloat_output_format; | |||
| 93 | /* Avoid actual stack overflow in print. */ | 93 | /* Avoid actual stack overflow in print. */ |
| 94 | int print_depth; | 94 | int print_depth; |
| 95 | 95 | ||
| 96 | /* Nonzero if inside outputting backquote in old style. */ | 96 | /* Level of nesting inside outputting backquote in new style. */ |
| 97 | int old_backquote_output; | 97 | int new_backquote_output; |
| 98 | 98 | ||
| 99 | /* Detect most circularities to print finite output. */ | 99 | /* Detect most circularities to print finite output. */ |
| 100 | #define PRINT_CIRCLE 200 | 100 | #define PRINT_CIRCLE 200 |
| @@ -1291,7 +1291,7 @@ print (obj, printcharfun, escapeflag) | |||
| 1291 | register Lisp_Object printcharfun; | 1291 | register Lisp_Object printcharfun; |
| 1292 | int escapeflag; | 1292 | int escapeflag; |
| 1293 | { | 1293 | { |
| 1294 | old_backquote_output = 0; | 1294 | new_backquote_output = 0; |
| 1295 | 1295 | ||
| 1296 | /* Reset print_number_index and Vprint_number_table only when | 1296 | /* Reset print_number_index and Vprint_number_table only when |
| 1297 | the variable Vprint_continuous_numbering is nil. Otherwise, | 1297 | the variable Vprint_continuous_numbering is nil. Otherwise, |
| @@ -1756,14 +1756,24 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1756 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | 1756 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); |
| 1757 | } | 1757 | } |
| 1758 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) | 1758 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) |
| 1759 | && ! old_backquote_output | 1759 | && ((EQ (XCAR (obj), Qbackquote)))) |
| 1760 | { | ||
| 1761 | print_object (XCAR (obj), printcharfun, 0); | ||
| 1762 | new_backquote_output++; | ||
| 1763 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | ||
| 1764 | new_backquote_output--; | ||
| 1765 | } | ||
| 1766 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) | ||
| 1767 | && new_backquote_output | ||
| 1760 | && ((EQ (XCAR (obj), Qbackquote) | 1768 | && ((EQ (XCAR (obj), Qbackquote) |
| 1761 | || EQ (XCAR (obj), Qcomma) | 1769 | || EQ (XCAR (obj), Qcomma) |
| 1762 | || EQ (XCAR (obj), Qcomma_at) | 1770 | || EQ (XCAR (obj), Qcomma_at) |
| 1763 | || EQ (XCAR (obj), Qcomma_dot)))) | 1771 | || EQ (XCAR (obj), Qcomma_dot)))) |
| 1764 | { | 1772 | { |
| 1765 | print_object (XCAR (obj), printcharfun, 0); | 1773 | print_object (XCAR (obj), printcharfun, 0); |
| 1774 | new_backquote_output--; | ||
| 1766 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | 1775 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); |
| 1776 | new_backquote_output++; | ||
| 1767 | } | 1777 | } |
| 1768 | else | 1778 | else |
| 1769 | { | 1779 | { |
| @@ -1783,9 +1793,7 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1783 | print_object (Qbackquote, printcharfun, 0); | 1793 | print_object (Qbackquote, printcharfun, 0); |
| 1784 | PRINTCHAR (' '); | 1794 | PRINTCHAR (' '); |
| 1785 | 1795 | ||
| 1786 | ++old_backquote_output; | ||
| 1787 | print_object (XCAR (XCDR (tem)), printcharfun, 0); | 1796 | print_object (XCAR (XCDR (tem)), printcharfun, 0); |
| 1788 | --old_backquote_output; | ||
| 1789 | PRINTCHAR (')'); | 1797 | PRINTCHAR (')'); |
| 1790 | 1798 | ||
| 1791 | obj = XCDR (obj); | 1799 | obj = XCDR (obj); |