]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of 'unprintable' stuff
authorEli Zaretskii <eliz@gnu.org>
Sat, 22 Jan 2022 14:49:06 +0000 (16:49 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 22 Jan 2022 14:49:06 +0000 (16:49 +0200)
* src/print.c (syms_of_print) <print-unreadable-function>:
* doc/lispref/streams.texi (Input Functions, Output Variables):
Improve the documentation of 'print-unreadable-function' and
'readablep'.  Add indexing and cross-references.

doc/lispref/streams.texi
src/print.c

index b93a7610fa02f0c964da128a92e6c1ede032a263..784adb9bd5198aaaa6a221b726179872fe47f4a5 100644 (file)
@@ -359,10 +359,12 @@ non-@code{nil} value and does nothing except flushing pending output.
 @end defun
 
 @defun readablep object
-This predicate says whether @var{object} can be written out and then
-read back by the Emacs Lisp reader.  If it can't, this function
-returns @code{nil}, and if it can, a printed representation (via
-@code{prin1}) of @var{object} is returned.
+@cindex readable syntax
+This predicate says whether @var{object} has @dfn{readable syntax},
+i.e., it can be written out and then read back by the Emacs Lisp
+reader.  If it can't, this function returns @code{nil}; if it can,
+this function returns a printed representation (via @code{prin1},
+@pxref{Output Functions}) of @var{object}.
 @end defun
 
 @node Output Streams
@@ -889,8 +891,8 @@ instance:
 @end example
 
 If this variable is non-@code{nil}, it should be a function that will
-be called to handle printing of these objects.  The first argument is
-the object, and the second argument is the @var{noescape} flag used by
+be called to handle printing of these objects.  The function will be
+called with two arguments: the object and the @var{noescape} flag used by
 the printing functions (@pxref{Output Functions}).
 
 The function should return either @code{nil} (print nothing), or a
index 4d9feb55ac2041e672df9967d3a2996f6dc673a0..e9a83d6d5dcc00bb6d98eac148ece68ba7de1f77 100644 (file)
@@ -2498,15 +2498,15 @@ priorities.  Values other than nil or t are also treated as
   staticpro (&print_prune_charset_plist);
 
   DEFVAR_LISP ("print-unreadable-function", Vprint_unreadable_function,
-              doc: /* Function called when printing unreadable objects.
+              doc: /* If non-nil, a function to call when printing unreadable objects.
 By default, Emacs printing functions (like `prin1') print unreadable
-objects like \"#<...>\", where \"...\" describes the object (for
+objects as \"#<...>\", where \"...\" describes the object (for
 instance, \"#<marker in no buffer>\").  If this variable is non-nil,
 it should be a function which will be called to print the object instead.
 
-It will be called with two arguments: The object to be printed, and
-noescape (see `prin1-to-string').  If this function returns nil, the
-object will be printed as normal.  If it returns a string, that string
+The function will be called with two arguments: the object to be printed, and
+the NOESCAPE flag (see `prin1-to-string').  If this function returns nil, the
+object will be printed as usual.  If it returns a string, that string
 will then be printed.  If the function returns anything else, the
 object will not be printed.  */);
   Vprint_unreadable_function = Qnil;