aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (Fprin1_to_string): Use macro SPECPDL_INDEX.Juanma Barranquero2007-04-021-1/+1
|
* Include blockinput.h.YAMAMOTO Mitsuharu2007-03-201-1/+6
| | | | (Fredirect_debugging_output): Add BLOCK_INPUT around fclose.
* (print): Reset print_number_index if Vprint_number_table is nil.Kim F. Storm2007-02-231-1/+2
|
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* Whitespace fixup.Andreas Schwab2006-09-141-10/+10
|
* (print_string): When printcharfun is t,Richard M. Stallman2006-09-131-5/+27
| | | | copy string contents and call strout on the copy.
* (strout): Fix whitespace.Andreas Schwab2006-09-081-1/+1
|
* (debug_output_compilation_hack): Fix return type.Andreas Schwab2006-08-161-1/+1
|
* (debug_output_compilation_hack): New function.Richard M. Stallman2006-08-161-0/+9
|
* Comment change.Richard M. Stallman2006-07-171-1/+3
|
* (PRINTFINISH): Call signal_after_change.Lars Hansen2006-04-201-0/+1
|
* (Fprin1_to_string): Mention in the `doc' that the behavior is modified byEli Zaretskii2006-04-131-1/+2
| | | | `print-level' and `print-length'.
* (print_output_debug_flag): New global variable.Eli Zaretskii2006-03-251-4/+8
| | | | | (Fexternal_debugging_output) [WINDOWSNT]: Don't call OutputDebugString if print_output_debug_flag is zero.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (print_preprocess): Don't loose print_depth levels while iterating.Károly Lőrentey2005-12-211-1/+2
|
* 2005-12-17 Chong Yidong <cyd@stupidchicken.com>Chong Yidong2005-12-171-8/+2
| | | | | * print.c (print_preprocess): Just signal an error if print_depth is exceeded.
* Revert last change.Chong Yidong2005-12-171-2/+8
|
* * print.c (print_preprocess): Just signal an error if print_depthChong Yidong2005-12-171-8/+2
| | | | is exceeded.
* * print.c (print_preprocess): Go to a deeper print_depth to avoidChong Yidong2005-12-141-1/+7
| | | | print_object loop.
* (safe_debug_print): New function to be called from gdbKim F. Storm2005-11-091-0/+20
| | | | | to print Lisp objects; use valid_lisp_object_p to avoid crashing if user tries to print something which is not a Lisp object.
* (print_error_message): Fix last change.Kim F. Storm2005-09-121-1/+1
|
* (print_error_message): Pass copy of caller name to message_dolog.Kim F. Storm2005-09-121-1/+3
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-071-2/+3
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (PRINTPREPARE): Check if the marker PRINTCHARFUN is within theLute Kamstra2005-04-091-6/+10
| | | | accessible part of the buffer.
* (print_object): Fix format string.Kim F. Storm2004-11-091-1/+1
|
* (print_object): Print Lisp_Misc_Save_Value objects.Kim F. Storm2004-11-051-0/+9
|
* (print_preprocess): Test for print_depth at limitRichard M. Stallman2004-07-171-5/+5
| | | | before entering in being_printed.
* (Fwith_output_to_temp_buffer): Doc fix.Eli Zaretskii2004-06-211-1/+1
|
* (print_object): Always use %ld for printing EMACS_INT.Andreas Schwab2004-06-131-5/+5
|
* (print): Reset print_depth before to call print_object.David Ponce2004-05-191-1/+2
|
* (print_object): Increase buf size.Kim F. Storm2004-05-171-3/+3
|
* (print_preprocess): Use being_printed, loop_count andRichard M. Stallman2004-05-101-0/+29
| | | | halftail to detect overdeep nesting and cyclic cdr chains.
* (temp_output_buffer_setup): Bind inhibit-read-only andKenichi Handa2004-05-101-0/+2
| | | | | inhibit-modification-hooks to t temporarily before calling Ferase_buffer.
* (print_object): Print non-ascii characters in bool vector representationAndreas Schwab2004-04-261-2/+11
| | | | as octal escapes. Use BOOL_VECTOR_BITS_PER_CHAR instead of BITS_PER_CHAR.
* (print_preprocess): Declare size as EMACS_INT to not lose bits.Andreas Schwab2004-01-261-2/+3
| | | | (print_object): Likewise.
* (print_preprocess) <case Lisp_Vectorlike>: Only maskAndreas Schwab2004-01-081-1/+3
| | | | size if PSEUDOVECTOR_FLAG is set.
* (Ferror_message_string): Add hyperlink to the definition of `signal'Luc Teirlinck2003-12-311-1/+3
| | | | in the Elisp manual.
* (Fredirect_debugging_output) [!GNU_LINUX]: Do notKim F. Storm2003-11-251-0/+12
| | | | define this defun on systems that cannot use stderr as lvalue.
* (Fredirect_debugging_output): New defun.Kim F. Storm2003-11-231-0/+34
| | | | (syms_of_print): Defsubr it.
* (Fprin1_to_string): Move the PRINTPREPARE later,Richard M. Stallman2003-09-191-13/+22
| | | | so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* (print_string): Fix printing of multibyte string withAndreas Schwab2003-08-081-1/+1
| | | | nontrivial printcharfun.
* (temp_output_buffer_setup): Typo.Stefan Monnier2003-07-221-2/+2
|
* (temp_output_buffer_setup): Use delete_all_overlays.Stefan Monnier2003-07-221-2/+3
|
* (temp_output_buffer_setup): Use new type for overlays_(before|after).Stefan Monnier2003-07-091-3/+3
|
* (syms_of_print) <print-escape-nonascii>: Doc fix.Richard M. Stallman2003-05-281-1/+3
|
* (Fprin1_to_string): Instead of gcpro, set abort_on_gc.Richard M. Stallman2003-05-091-7/+12
| | | | | Bind Qinhibit_modification_hooks to t so there will be no GC. Rename local `tem' to `save_deactivate_mark'.
* (Fprin1_to_string): Return unibyte string if possible.Stefan Monnier2003-03-111-0/+2
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-18/+18
|