1 /* Record indices of function doc strings stored in a file. -*- coding: utf-8 -*-
3 Copyright (C) 1985-1986, 1993-1995, 1997-2017 Free Software Foundation,
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
25 #include <sys/types.h>
26 #include <sys/file.h> /* Must be after sys/types.h for USG. */
33 #include "character.h"
37 #include "intervals.h"
40 /* Buffer used for reading from documentation file. */
41 static char *get_doc_string_buffer
;
42 static ptrdiff_t get_doc_string_buffer_size
;
44 static unsigned char *read_bytecode_pointer
;
46 static char const sibling_etc
[] = "../etc/";
48 /* `readchar' in lread.c calls back here to fetch the next byte.
49 If UNREADFLAG is 1, we unread a byte. */
52 read_bytecode_char (bool unreadflag
)
56 read_bytecode_pointer
--;
59 return *read_bytecode_pointer
++;
62 /* Extract a doc string from a file. FILEPOS says where to get it.
63 If it is an integer, use that position in the standard DOC file.
64 If it is (FILE . INTEGER), use FILE as the file name
65 and INTEGER as the position in that file.
66 But if INTEGER is negative, make it positive.
67 (A negative integer is used for user variables, so we can distinguish
68 them without actually fetching the doc string.)
70 If the location does not point to the beginning of a docstring
71 (e.g. because the file has been modified and the location is stale),
74 If UNIBYTE, always make a unibyte string.
76 If DEFINITION, assume this is for reading
77 a dynamic function definition; convert the bytestring
78 and the constants vector with appropriate byte handling,
79 and return a cons cell. */
82 get_doc_string (Lisp_Object filepos
, bool unibyte
, bool definition
)
84 char *from
, *to
, *name
, *p
, *p1
;
88 Lisp_Object file
, tem
, pos
;
92 if (INTEGERP (filepos
))
94 file
= Vdoc_file_name
;
97 else if (CONSP (filepos
))
99 file
= XCAR (filepos
);
100 pos
= XCDR (filepos
);
105 position
= eabs (XINT (pos
));
107 if (!STRINGP (Vdoc_directory
))
113 /* Put the file name in NAME as a C string.
114 If it is relative, combine it with Vdoc_directory. */
116 tem
= Ffile_name_absolute_p (file
);
117 file
= ENCODE_FILE (file
);
119 = NILP (tem
) ? ENCODE_FILE (Vdoc_directory
) : empty_unibyte_string
;
120 ptrdiff_t docdir_sizemax
= SBYTES (docdir
) + 1;
122 docdir_sizemax
= max (docdir_sizemax
, sizeof sibling_etc
);
124 name
= SAFE_ALLOCA (docdir_sizemax
+ SBYTES (file
));
125 lispstpcpy (lispstpcpy (name
, docdir
), file
);
127 fd
= emacs_open (name
, O_RDONLY
, 0);
131 if (!NILP (Vpurify_flag
))
133 /* Preparing to dump; DOC file is probably not installed.
134 So check in ../etc. */
135 lispstpcpy (stpcpy (name
, sibling_etc
), file
);
137 fd
= emacs_open (name
, O_RDONLY
, 0);
142 if (errno
== EMFILE
|| errno
== ENFILE
)
143 report_file_error ("Read error on documentation file", file
);
146 AUTO_STRING (cannot_open
, "Cannot open doc string file \"");
147 AUTO_STRING (quote_nl
, "\"\n");
148 return concat3 (cannot_open
, file
, quote_nl
);
151 count
= SPECPDL_INDEX ();
152 record_unwind_protect_int (close_file_unwind
, fd
);
154 /* Seek only to beginning of disk block. */
155 /* Make sure we read at least 1024 bytes before `position'
156 so we can check the leading text for consistency. */
157 offset
= min (position
, max (1024, position
% (8 * 1024)));
158 if (TYPE_MAXIMUM (off_t
) < position
159 || lseek (fd
, position
- offset
, 0) < 0)
160 error ("Position %"pI
"d out of range in doc string file \"%s\"",
163 /* Read the doc string into get_doc_string_buffer.
164 P points beyond the data just read. */
166 p
= get_doc_string_buffer
;
169 ptrdiff_t space_left
= (get_doc_string_buffer_size
- 1
170 - (p
- get_doc_string_buffer
));
173 /* Allocate or grow the buffer if we need to. */
176 ptrdiff_t in_buffer
= p
- get_doc_string_buffer
;
177 get_doc_string_buffer
178 = xpalloc (get_doc_string_buffer
, &get_doc_string_buffer_size
,
180 p
= get_doc_string_buffer
+ in_buffer
;
181 space_left
= (get_doc_string_buffer_size
- 1
182 - (p
- get_doc_string_buffer
));
185 /* Read a disk block at a time.
186 If we read the same block last time, maybe skip this? */
187 if (space_left
> 1024 * 8)
188 space_left
= 1024 * 8;
189 nread
= emacs_read_quit (fd
, p
, space_left
);
191 report_file_error ("Read error on documentation file", file
);
195 if (p
== get_doc_string_buffer
)
196 p1
= strchr (p
+ offset
, '\037');
198 p1
= strchr (p
, '\037');
207 unbind_to (count
, Qnil
);
210 /* Sanity checking. */
214 /* A dynamic docstring should be either at the very beginning of a "#@
215 comment" or right after a dynamic docstring delimiter (in case we
216 pack several such docstrings within the same comment). */
217 if (get_doc_string_buffer
[offset
- test
] != '\037')
219 if (get_doc_string_buffer
[offset
- test
++] != ' ')
221 while (get_doc_string_buffer
[offset
- test
] >= '0'
222 && get_doc_string_buffer
[offset
- test
] <= '9')
224 if (get_doc_string_buffer
[offset
- test
++] != '@'
225 || get_doc_string_buffer
[offset
- test
] != '#')
232 if (get_doc_string_buffer
[offset
- test
++] != '\n')
234 while (get_doc_string_buffer
[offset
- test
] > ' ')
236 if (get_doc_string_buffer
[offset
- test
] != '\037')
240 /* Scan the text and perform quoting with ^A (char code 1).
241 ^A^A becomes ^A, ^A0 becomes a null char, and ^A_ becomes a ^_. */
242 from
= get_doc_string_buffer
+ offset
;
243 to
= get_doc_string_buffer
+ offset
;
260 unsigned char uc
= c
;
262 Invalid data in documentation file -- %c followed by code %03o",
270 /* If DEFINITION, read from this buffer
271 the same way we would read bytes from a file. */
274 read_bytecode_pointer
= (unsigned char *) get_doc_string_buffer
+ offset
;
275 return Fread (Qlambda
);
279 return make_unibyte_string (get_doc_string_buffer
+ offset
,
280 to
- (get_doc_string_buffer
+ offset
));
283 /* The data determines whether the string is multibyte. */
285 = multibyte_chars_in_text (((unsigned char *) get_doc_string_buffer
287 to
- (get_doc_string_buffer
+ offset
));
288 return make_string_from_bytes (get_doc_string_buffer
+ offset
,
290 to
- (get_doc_string_buffer
+ offset
));
294 /* Get a string from position FILEPOS and pass it through the Lisp reader.
295 We use this for fetching the bytecode string and constants vector
296 of a compiled function from the .elc file. */
299 read_doc_string (Lisp_Object filepos
)
301 return get_doc_string (filepos
, 0, 1);
305 reread_doc_file (Lisp_Object file
)
308 Fsnarf_documentation (Vdoc_file_name
);
310 Fload (file
, Qt
, Qt
, Qt
, Qnil
);
315 DEFUN ("documentation", Fdocumentation
, Sdocumentation
, 1, 2, 0,
316 doc
: /* Return the documentation string of FUNCTION.
317 Unless a non-nil second argument RAW is given, the
318 string is passed through `substitute-command-keys'. */)
319 (Lisp_Object function
, Lisp_Object raw
)
330 if (SYMBOLP (function
))
332 Lisp_Object tem
= Fget (function
, Qfunction_documentation
);
334 return Fdocumentation_property (function
, Qfunction_documentation
,
338 fun
= Findirect_function (function
, Qnil
);
339 if (CONSP (fun
) && EQ (XCAR (fun
), Qmacro
))
342 doc
= make_number (XSUBR (fun
)->doc
);
343 else if (MODULE_FUNCTIONP (fun
))
344 doc
= XMODULE_FUNCTION (fun
)->documentation
;
345 else if (COMPILEDP (fun
))
347 if (PVSIZE (fun
) <= COMPILED_DOC_STRING
)
351 Lisp_Object tem
= AREF (fun
, COMPILED_DOC_STRING
);
354 else if (NATNUMP (tem
) || CONSP (tem
))
360 else if (STRINGP (fun
) || VECTORP (fun
))
362 return build_string ("Keyboard macro.");
364 else if (CONSP (fun
))
367 if (!SYMBOLP (funcar
))
368 xsignal1 (Qinvalid_function
, fun
);
369 else if (EQ (funcar
, Qkeymap
))
370 return build_string ("Prefix command (definition is a keymap associating keystrokes with commands).");
371 else if (EQ (funcar
, Qlambda
)
372 || (EQ (funcar
, Qclosure
) && (fun
= XCDR (fun
), 1))
373 || EQ (funcar
, Qautoload
))
375 Lisp_Object tem1
= Fcdr (Fcdr (fun
));
376 Lisp_Object tem
= Fcar (tem1
);
379 /* Handle a doc reference--but these never come last
380 in the function body, so reject them if they are last. */
381 else if ((NATNUMP (tem
) || (CONSP (tem
) && INTEGERP (XCDR (tem
))))
382 && !NILP (XCDR (tem1
)))
393 xsignal1 (Qinvalid_function
, fun
);
396 /* If DOC is 0, it's typically because of a dumped file missing
397 from the DOC file (bug in src/Makefile.in). */
398 if (EQ (doc
, make_number (0)))
400 if (INTEGERP (doc
) || CONSP (doc
))
403 tem
= get_doc_string (doc
, 0, 0);
404 if (NILP (tem
) && try_reload
)
406 /* The file is newer, we need to reset the pointers. */
407 try_reload
= reread_doc_file (Fcar_safe (doc
));
419 doc
= Fsubstitute_command_keys (doc
);
423 DEFUN ("documentation-property", Fdocumentation_property
,
424 Sdocumentation_property
, 2, 3, 0,
425 doc
: /* Return the documentation string that is SYMBOL's PROP property.
426 Third argument RAW omitted or nil means pass the result through
427 `substitute-command-keys' if it is a string.
429 This differs from `get' in that it can refer to strings stored in the
430 `etc/DOC' file; and that it evaluates documentation properties that
432 (Lisp_Object symbol
, Lisp_Object prop
, Lisp_Object raw
)
437 documentation_property
:
439 tem
= Fget (symbol
, prop
);
440 if (EQ (tem
, make_number (0)))
442 if (INTEGERP (tem
) || (CONSP (tem
) && INTEGERP (XCDR (tem
))))
444 Lisp_Object doc
= tem
;
445 tem
= get_doc_string (tem
, 0, 0);
446 if (NILP (tem
) && try_reload
)
448 /* The file is newer, we need to reset the pointers. */
449 try_reload
= reread_doc_file (Fcar_safe (doc
));
453 goto documentation_property
;
457 else if (!STRINGP (tem
))
458 /* Feval protects its argument. */
459 tem
= Feval (tem
, Qnil
);
461 if (NILP (raw
) && STRINGP (tem
))
462 tem
= Fsubstitute_command_keys (tem
);
466 /* Scanning the DOC files and placing docstring offsets into functions. */
469 store_function_docstring (Lisp_Object obj
, EMACS_INT offset
)
471 /* Don't use indirect_function here, or defaliases will apply their
472 docstrings to the base functions (Bug#2603). */
473 Lisp_Object fun
= SYMBOLP (obj
) ? XSYMBOL (obj
)->function
: obj
;
475 /* The type determines where the docstring is stored. */
477 /* If it's a lisp form, stick it in the form. */
478 if (CONSP (fun
) && EQ (XCAR (fun
), Qmacro
))
485 if (EQ (tem
, Qlambda
) || EQ (tem
, Qautoload
)
486 || (EQ (tem
, Qclosure
) && (fun
= XCDR (fun
), 1)))
488 tem
= Fcdr (Fcdr (fun
));
489 if (CONSP (tem
) && INTEGERP (XCAR (tem
)))
490 /* FIXME: This modifies typically pure hash-cons'd data, so its
491 correctness is quite delicate. */
492 XSETCAR (tem
, make_number (offset
));
496 /* Lisp_Subrs have a slot for it. */
497 else if (SUBRP (fun
))
498 XSUBR (fun
)->doc
= offset
;
500 /* Bytecode objects sometimes have slots for it. */
501 else if (COMPILEDP (fun
))
503 /* This bytecode object must have a slot for the
504 docstring, since we've found a docstring for it. */
505 if (PVSIZE (fun
) > COMPILED_DOC_STRING
)
506 ASET (fun
, COMPILED_DOC_STRING
, make_number (offset
));
509 AUTO_STRING (format
, "No docstring slot for %s");
510 CALLN (Fmessage
, format
,
513 : build_string ("<anonymous>")));
519 DEFUN ("Snarf-documentation", Fsnarf_documentation
, Ssnarf_documentation
,
521 doc
: /* Used during Emacs initialization to scan the `etc/DOC...' file.
522 This searches the `etc/DOC...' file for doc strings and
523 records them in function and variable definitions.
524 The function takes one argument, FILENAME, a string;
525 it specifies the file name (without a directory) of the DOC file.
526 That file is found in `../etc' now; later, when the dumped Emacs is run,
527 the same file name is found in the `doc-directory'. */)
528 (Lisp_Object filename
)
540 /* Preloaded defcustoms using custom-initialize-delay are added to
541 this list, but kept unbound. See https://debbugs.gnu.org/11565 */
542 Lisp_Object delayed_init
=
543 find_symbol_value (intern ("custom-delayed-init-variables"));
545 if (EQ (delayed_init
, Qunbound
)) delayed_init
= Qnil
;
547 CHECK_STRING (filename
);
551 (!NILP (Vpurify_flag
))
552 #else /* CANNOT_DUMP */
554 #endif /* CANNOT_DUMP */
556 dirname
= sibling_etc
;
557 dirlen
= sizeof sibling_etc
- 1;
561 CHECK_STRING (Vdoc_directory
);
562 dirname
= SSDATA (Vdoc_directory
);
563 dirlen
= SBYTES (Vdoc_directory
);
566 count
= SPECPDL_INDEX ();
568 name
= SAFE_ALLOCA (dirlen
+ SBYTES (filename
) + 1);
569 lispstpcpy (stpcpy (name
, dirname
), filename
); /*** Add this line ***/
571 /* Vbuild_files is nil when temacs is run, and non-nil after that. */
572 if (NILP (Vbuild_files
))
574 static char const *const buildobj
[] =
576 #include "buildobj.h"
578 int i
= ARRAYELTS (buildobj
);
580 Vbuild_files
= Fcons (build_string (buildobj
[i
]), Vbuild_files
);
581 Vbuild_files
= Fpurecopy (Vbuild_files
);
584 fd
= emacs_open (name
, O_RDONLY
, 0);
587 int open_errno
= errno
;
588 report_file_errno ("Opening doc string file", build_string (name
),
591 record_unwind_protect_int (close_file_unwind
, fd
);
592 Vdoc_file_name
= filename
;
598 filled
+= emacs_read_quit (fd
, &buf
[filled
], sizeof buf
- 1 - filled
);
603 char *end
= buf
+ (filled
< 512 ? filled
: filled
- 128);
604 p
= memchr (buf
, '\037', end
- buf
);
605 /* p points to ^_Ffunctionname\n or ^_Vvarname\n or ^_Sfilename\n. */
608 end
= strchr (p
, '\n');
610 /* See if this is a file name, and if it is a file in build-files. */
614 if (end
- p
> 4 && end
[-2] == '.'
615 && (end
[-1] == 'o' || end
[-1] == 'c'))
617 ptrdiff_t len
= end
- p
- 2;
618 char *fromfile
= SAFE_ALLOCA (len
+ 1);
619 memcpy (fromfile
, &p
[2], len
);
621 if (fromfile
[len
-1] == 'c')
622 fromfile
[len
-1] = 'o';
624 skip_file
= NILP (Fmember (build_string (fromfile
),
629 sym
= oblookup (Vobarray
, p
+ 2,
630 multibyte_chars_in_text ((unsigned char *) p
+ 2,
633 /* Check skip_file so that when a function is defined several
634 times in different files (typically, once in xterm, once in
635 w32term, ...), we only pay attention to the one that
637 if (! skip_file
&& SYMBOLP (sym
))
639 /* Attach a docstring to a variable? */
642 /* Install file-position as variable-documentation property
643 and make it negative for a user-variable
644 (doc starts with a `*'). */
645 if (!NILP (Fboundp (sym
))
646 || !NILP (Fmemq (sym
, delayed_init
)))
647 Fput (sym
, Qvariable_documentation
,
648 make_number ((pos
+ end
+ 1 - buf
)
649 * (end
[1] == '*' ? -1 : 1)));
652 /* Attach a docstring to a function? */
653 else if (p
[1] == 'F')
655 if (!NILP (Ffboundp (sym
)))
656 store_function_docstring (sym
, pos
+ end
+ 1 - buf
);
658 else if (p
[1] == 'S')
659 ; /* Just a source file name boundary marker. Ignore it. */
662 error ("DOC file invalid at position %"pI
"d", pos
);
667 memmove (buf
, end
, filled
);
671 return unbind_to (count
, Qnil
);
674 /* Return true if text quoting style should default to quote `like this'. */
676 default_to_grave_quoting_style (void)
678 if (!text_quoting_flag
)
680 if (! DISP_TABLE_P (Vstandard_display_table
))
682 Lisp_Object dv
= DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table
),
683 LEFT_SINGLE_QUOTATION_MARK
);
684 return (VECTORP (dv
) && ASIZE (dv
) == 1
685 && EQ (AREF (dv
, 0), make_number ('`')));
688 /* Return the current effective text quoting style. */
689 enum text_quoting_style
690 text_quoting_style (void)
692 if (NILP (Vtext_quoting_style
)
693 ? default_to_grave_quoting_style ()
694 : EQ (Vtext_quoting_style
, Qgrave
))
695 return GRAVE_QUOTING_STYLE
;
696 else if (EQ (Vtext_quoting_style
, Qstraight
))
697 return STRAIGHT_QUOTING_STYLE
;
699 return CURVE_QUOTING_STYLE
;
702 DEFUN ("substitute-command-keys", Fsubstitute_command_keys
,
703 Ssubstitute_command_keys
, 1, 1, 0,
704 doc
: /* Substitute key descriptions for command names in STRING.
705 Each substring of the form \\=\\[COMMAND] is replaced by either a
706 keystroke sequence that invokes COMMAND, or "M-x COMMAND" if COMMAND
709 Each substring of the form \\=\\{MAPVAR} is replaced by a summary of
710 the value of MAPVAR as a keymap. This summary is similar to the one
711 produced by `describe-bindings'. The summary ends in two newlines
712 \(used by the helper function `help-make-xrefs' to find the end of the
715 Each substring of the form \\=\\<MAPVAR> specifies the use of MAPVAR
716 as the keymap for future \\=\\[COMMAND] substrings.
718 Each grave accent \\=` is replaced by left quote, and each apostrophe \\='
719 is replaced by right quote. Left and right quote characters are
720 specified by `text-quoting-style'.
722 \\=\\= quotes the following character and is discarded; thus, \\=\\=\\=\\= puts \\=\\=
723 into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and \\=\\=\\=` puts \\=` into the
726 Return the original STRING if no substitutions are made.
727 Otherwise, return a new string. */)
731 bool changed
= false;
732 bool nonquotes_changed
= false;
739 unsigned char const *start
;
740 ptrdiff_t length
, length_byte
;
747 /* If STRING contains non-ASCII unibyte data, process its
748 properly-encoded multibyte equivalent instead. This simplifies
749 the implementation and is OK since substitute-command-keys is
750 intended for use only on text strings. Keep STRING around, since
751 it will be returned if no changes occur. */
752 Lisp_Object str
= Fstring_make_multibyte (string
);
754 enum text_quoting_style quoting_style
= text_quoting_style ();
758 /* KEYMAP is either nil (which means search all the active keymaps)
759 or a specified local map (which means search just that and the
760 global map). If non-nil, it might come from Voverriding_local_map,
761 or from a \\<mapname> construct in STRING itself.. */
762 keymap
= Voverriding_local_map
;
764 ptrdiff_t strbytes
= SBYTES (str
);
767 /* Fixed-size stack buffer. */
768 char sbuf
[MAX_ALLOCA
];
770 /* Heap-allocated buffer, if any. */
773 /* Extra room for expansion due to replacing ‘\[]’ with ‘M-x ’. */
774 enum { EXTRA_ROOM
= sizeof "M-x " - sizeof "\\[]" };
776 ptrdiff_t count
= SPECPDL_INDEX ();
778 if (bsize
<= sizeof sbuf
- EXTRA_ROOM
)
786 buf
= abuf
= xpalloc (NULL
, &bsize
, EXTRA_ROOM
, STRING_BYTES_BOUND
, 1);
787 record_unwind_protect_ptr (xfree
, abuf
);
792 while (strp
< SDATA (str
) + strbytes
)
794 unsigned char *close_bracket
;
796 if (strp
[0] == '\\' && strp
[1] == '='
797 && strp
+ 2 < SDATA (str
) + strbytes
)
799 /* \= quotes the next character;
800 thus, to put in \[ without its special meaning, use \=\[. */
801 changed
= nonquotes_changed
= true;
803 /* Fall through to copy one char. */
805 else if (strp
[0] == '\\' && strp
[1] == '['
807 = memchr (strp
+ 2, ']',
808 SDATA (str
) + strbytes
- (strp
+ 2))))
810 bool follow_remap
= 1;
813 length_byte
= close_bracket
- start
;
814 idx
= close_bracket
+ 1 - SDATA (str
);
816 name
= Fintern (make_string ((char *) start
, length_byte
), Qnil
);
819 tem
= Fwhere_is_internal (name
, keymap
, Qt
, Qnil
, Qnil
);
821 if (VECTORP (tem
) && ASIZE (tem
) > 1
822 && EQ (AREF (tem
, 0), Qremap
) && SYMBOLP (AREF (tem
, 1))
825 name
= AREF (tem
, 1);
830 /* Fwhere_is_internal can GC, so take relocation of string
831 contents into account. */
832 strp
= SDATA (str
) + idx
;
833 start
= strp
- length_byte
- 1;
835 if (NILP (tem
)) /* but not on any keys */
837 memcpy (bufp
, "M-x ", 4);
840 length
= multibyte_chars_in_text (start
, length_byte
);
844 { /* function is on a key */
845 tem
= Fkey_description (tem
, Qnil
);
849 /* \{foo} is replaced with a summary of the keymap (symbol-value foo).
850 \<foo> just sets the keymap used for \[cmd]. */
851 else if (strp
[0] == '\\' && (strp
[1] == '{' || strp
[1] == '<')
853 = memchr (strp
+ 2, strp
[1] == '{' ? '}' : '>',
854 SDATA (str
) + strbytes
- (strp
+ 2))))
857 bool generate_summary
= strp
[1] == '{';
858 /* This is for computing the SHADOWS arg for describe_map_tree. */
859 Lisp_Object active_maps
= Fcurrent_active_maps (Qnil
, Qnil
);
860 ptrdiff_t count
= SPECPDL_INDEX ();
863 length_byte
= close_bracket
- start
;
864 idx
= close_bracket
+ 1 - SDATA (str
);
866 /* Get the value of the keymap in TEM, or nil if undefined.
867 Do this while still in the user's current buffer
868 in case it is a local variable. */
869 name
= Fintern (make_string ((char *) start
, length_byte
), Qnil
);
870 tem
= Fboundp (name
);
873 tem
= Fsymbol_value (name
);
875 tem
= get_keymap (tem
, 0, 1);
878 /* Now switch to a temp buffer. */
879 struct buffer
*oldbuf
= current_buffer
;
880 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
881 /* This is for an unusual case where some after-change
882 function uses 'format' or 'prin1' or something else that
883 will thrash Vprin1_to_string_buffer we are using. */
884 specbind (Qinhibit_modification_hooks
, Qt
);
888 name
= Fsymbol_name (name
);
889 AUTO_STRING (msg_prefix
, "\nUses keymap `");
890 insert1 (Fsubstitute_command_keys (msg_prefix
));
891 insert_from_string (name
, 0, 0,
894 AUTO_STRING (msg_suffix
, "', which is not currently defined.\n");
895 insert1 (Fsubstitute_command_keys (msg_suffix
));
896 if (!generate_summary
)
899 else if (!generate_summary
)
903 /* Get the list of active keymaps that precede this one.
904 If this one's not active, get nil. */
905 Lisp_Object earlier_maps
906 = Fcdr (Fmemq (tem
, Freverse (active_maps
)));
907 describe_map_tree (tem
, 1, Fnreverse (earlier_maps
),
908 Qnil
, 0, 1, 0, 0, 1);
910 tem
= Fbuffer_string ();
912 set_buffer_internal (oldbuf
);
913 unbind_to (count
, Qnil
);
917 /* Convert non-ASCII unibyte data to properly-encoded multibyte,
918 for the same reason STRING was converted to STR. */
919 tem
= Fstring_make_multibyte (tem
);
921 length
= SCHARS (tem
);
922 length_byte
= SBYTES (tem
);
924 nonquotes_changed
= true;
928 ptrdiff_t offset
= bufp
- buf
;
929 ptrdiff_t avail
= bsize
- offset
;
930 ptrdiff_t need
= strbytes
- idx
;
931 if (INT_ADD_WRAPV (need
, length_byte
+ EXTRA_ROOM
, &need
))
935 abuf
= xpalloc (abuf
, &bsize
, need
- avail
,
936 STRING_BYTES_BOUND
, 1);
939 record_unwind_protect_ptr (xfree
, abuf
);
940 memcpy (abuf
, sbuf
, offset
);
943 set_unwind_protect_ptr (count
, xfree
, abuf
);
947 memcpy (bufp
, start
, length_byte
);
951 /* Some of the previous code can GC, so take relocation of
952 string contents into account. */
953 strp
= SDATA (str
) + idx
;
958 else if ((strp
[0] == '`' || strp
[0] == '\'')
959 && quoting_style
== CURVE_QUOTING_STYLE
)
961 start
= (unsigned char const *) (strp
[0] == '`' ? uLSQM
: uRSQM
);
963 length_byte
= sizeof uLSQM
- 1;
964 idx
= strp
- SDATA (str
) + 1;
967 else if (strp
[0] == '`' && quoting_style
== STRAIGHT_QUOTING_STYLE
)
979 while (! CHAR_HEAD_P (*strp
));
983 if (changed
) /* don't bother if nothing substituted */
985 tem
= make_string_from_bytes (buf
, nchars
, bufp
- buf
);
986 if (!nonquotes_changed
)
988 /* Nothing has changed other than quoting, so copy the string’s
989 text properties. FIXME: Text properties should survive other
991 INTERVAL interval_copy
= copy_intervals (string_intervals (string
),
995 set_interval_object (interval_copy
, tem
);
996 set_string_intervals (tem
, interval_copy
);
1002 return unbind_to (count
, tem
);
1008 DEFSYM (Qfunction_documentation
, "function-documentation");
1009 DEFSYM (Qgrave
, "grave");
1010 DEFSYM (Qstraight
, "straight");
1012 DEFVAR_LISP ("internal-doc-file-name", Vdoc_file_name
,
1013 doc
: /* Name of file containing documentation strings of built-in symbols. */);
1014 Vdoc_file_name
= Qnil
;
1016 DEFVAR_LISP ("build-files", Vbuild_files
,
1017 doc
: /* A list of files used to build this Emacs binary. */);
1018 Vbuild_files
= Qnil
;
1020 DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style
,
1021 doc
: /* Style to use for single quotes in help and messages.
1022 Its value should be a symbol. It works by substituting certain single
1023 quotes for grave accent and apostrophe. This is done in help output
1024 and in functions like `message' and `format-message'. It is not done
1027 `curve' means quote with curved single quotes ‘like this’.
1028 `straight' means quote with straight apostrophes \\='like this\\='.
1029 `grave' means quote with grave accent and apostrophe \\=`like this\\=';
1030 i.e., do not alter quote marks. The default value nil acts like
1031 `curve' if curved single quotes are displayable, and like `grave'
1033 Vtext_quoting_style
= Qnil
;
1035 DEFVAR_BOOL ("internal--text-quoting-flag", text_quoting_flag
,
1036 doc
: /* If nil, a nil `text-quoting-style' is treated as `grave'. */);
1037 /* Initialized by ‘main’. */
1039 defsubr (&Sdocumentation
);
1040 defsubr (&Sdocumentation_property
);
1041 defsubr (&Ssnarf_documentation
);
1042 defsubr (&Ssubstitute_command_keys
);