]> code.delx.au - gnu-emacs/blob - src/doc.c
a20ecbdb753f05bd054576160af0f06025943f46
[gnu-emacs] / src / doc.c
1 /* Record indices of function doc strings stored in a file. -*- coding: utf-8 -*-
2
3 Copyright (C) 1985-1986, 1993-1995, 1997-2016 Free Software Foundation,
4 Inc.
5
6 This file is part of GNU Emacs.
7
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
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21
22 #include <config.h>
23
24 #include <errno.h>
25 #include <sys/types.h>
26 #include <sys/file.h> /* Must be after sys/types.h for USG. */
27 #include <fcntl.h>
28 #include <unistd.h>
29
30 #include <c-ctype.h>
31
32 #include "lisp.h"
33 #include "character.h"
34 #include "coding.h"
35 #include "buffer.h"
36 #include "disptab.h"
37 #include "keymap.h"
38
39 /* Buffer used for reading from documentation file. */
40 static char *get_doc_string_buffer;
41 static ptrdiff_t get_doc_string_buffer_size;
42
43 static unsigned char *read_bytecode_pointer;
44
45 static char const sibling_etc[] = "../etc/";
46
47 /* `readchar' in lread.c calls back here to fetch the next byte.
48 If UNREADFLAG is 1, we unread a byte. */
49
50 int
51 read_bytecode_char (bool unreadflag)
52 {
53 if (unreadflag)
54 {
55 read_bytecode_pointer--;
56 return 0;
57 }
58 return *read_bytecode_pointer++;
59 }
60
61 /* Extract a doc string from a file. FILEPOS says where to get it.
62 If it is an integer, use that position in the standard DOC file.
63 If it is (FILE . INTEGER), use FILE as the file name
64 and INTEGER as the position in that file.
65 But if INTEGER is negative, make it positive.
66 (A negative integer is used for user variables, so we can distinguish
67 them without actually fetching the doc string.)
68
69 If the location does not point to the beginning of a docstring
70 (e.g. because the file has been modified and the location is stale),
71 return nil.
72
73 If UNIBYTE, always make a unibyte string.
74
75 If DEFINITION, assume this is for reading
76 a dynamic function definition; convert the bytestring
77 and the constants vector with appropriate byte handling,
78 and return a cons cell. */
79
80 Lisp_Object
81 get_doc_string (Lisp_Object filepos, bool unibyte, bool definition)
82 {
83 char *from, *to, *name, *p, *p1;
84 int fd;
85 int offset;
86 EMACS_INT position;
87 Lisp_Object file, tem, pos;
88 ptrdiff_t count;
89 USE_SAFE_ALLOCA;
90
91 if (INTEGERP (filepos))
92 {
93 file = Vdoc_file_name;
94 pos = filepos;
95 }
96 else if (CONSP (filepos))
97 {
98 file = XCAR (filepos);
99 pos = XCDR (filepos);
100 }
101 else
102 return Qnil;
103
104 position = eabs (XINT (pos));
105
106 if (!STRINGP (Vdoc_directory))
107 return Qnil;
108
109 if (!STRINGP (file))
110 return Qnil;
111
112 /* Put the file name in NAME as a C string.
113 If it is relative, combine it with Vdoc_directory. */
114
115 tem = Ffile_name_absolute_p (file);
116 file = ENCODE_FILE (file);
117 Lisp_Object docdir
118 = NILP (tem) ? ENCODE_FILE (Vdoc_directory) : empty_unibyte_string;
119 ptrdiff_t docdir_sizemax = SBYTES (docdir) + 1;
120 #ifndef CANNOT_DUMP
121 docdir_sizemax = max (docdir_sizemax, sizeof sibling_etc);
122 #endif
123 name = SAFE_ALLOCA (docdir_sizemax + SBYTES (file));
124 lispstpcpy (lispstpcpy (name, docdir), file);
125
126 fd = emacs_open (name, O_RDONLY, 0);
127 if (fd < 0)
128 {
129 #ifndef CANNOT_DUMP
130 if (!NILP (Vpurify_flag))
131 {
132 /* Preparing to dump; DOC file is probably not installed.
133 So check in ../etc. */
134 lispstpcpy (stpcpy (name, sibling_etc), file);
135
136 fd = emacs_open (name, O_RDONLY, 0);
137 }
138 #endif
139 if (fd < 0)
140 {
141 if (errno == EMFILE || errno == ENFILE)
142 report_file_error ("Read error on documentation file", file);
143
144 SAFE_FREE ();
145 AUTO_STRING (cannot_open, "Cannot open doc string file \"");
146 AUTO_STRING (quote_nl, "\"\n");
147 return concat3 (cannot_open, file, quote_nl);
148 }
149 }
150 count = SPECPDL_INDEX ();
151 record_unwind_protect_int (close_file_unwind, fd);
152
153 /* Seek only to beginning of disk block. */
154 /* Make sure we read at least 1024 bytes before `position'
155 so we can check the leading text for consistency. */
156 offset = min (position, max (1024, position % (8 * 1024)));
157 if (TYPE_MAXIMUM (off_t) < position
158 || lseek (fd, position - offset, 0) < 0)
159 error ("Position %"pI"d out of range in doc string file \"%s\"",
160 position, name);
161
162 /* Read the doc string into get_doc_string_buffer.
163 P points beyond the data just read. */
164
165 p = get_doc_string_buffer;
166 while (1)
167 {
168 ptrdiff_t space_left = (get_doc_string_buffer_size - 1
169 - (p - get_doc_string_buffer));
170 int nread;
171
172 /* Allocate or grow the buffer if we need to. */
173 if (space_left <= 0)
174 {
175 ptrdiff_t in_buffer = p - get_doc_string_buffer;
176 get_doc_string_buffer
177 = xpalloc (get_doc_string_buffer, &get_doc_string_buffer_size,
178 16 * 1024, -1, 1);
179 p = get_doc_string_buffer + in_buffer;
180 space_left = (get_doc_string_buffer_size - 1
181 - (p - get_doc_string_buffer));
182 }
183
184 /* Read a disk block at a time.
185 If we read the same block last time, maybe skip this? */
186 if (space_left > 1024 * 8)
187 space_left = 1024 * 8;
188 nread = emacs_read (fd, p, space_left);
189 if (nread < 0)
190 report_file_error ("Read error on documentation file", file);
191 p[nread] = 0;
192 if (!nread)
193 break;
194 if (p == get_doc_string_buffer)
195 p1 = strchr (p + offset, '\037');
196 else
197 p1 = strchr (p, '\037');
198 if (p1)
199 {
200 *p1 = 0;
201 p = p1;
202 break;
203 }
204 p += nread;
205 }
206 unbind_to (count, Qnil);
207 SAFE_FREE ();
208
209 /* Sanity checking. */
210 if (CONSP (filepos))
211 {
212 int test = 1;
213 /* A dynamic docstring should be either at the very beginning of a "#@
214 comment" or right after a dynamic docstring delimiter (in case we
215 pack several such docstrings within the same comment). */
216 if (get_doc_string_buffer[offset - test] != '\037')
217 {
218 if (get_doc_string_buffer[offset - test++] != ' ')
219 return Qnil;
220 while (get_doc_string_buffer[offset - test] >= '0'
221 && get_doc_string_buffer[offset - test] <= '9')
222 test++;
223 if (get_doc_string_buffer[offset - test++] != '@'
224 || get_doc_string_buffer[offset - test] != '#')
225 return Qnil;
226 }
227 }
228 else
229 {
230 int test = 1;
231 if (get_doc_string_buffer[offset - test++] != '\n')
232 return Qnil;
233 while (get_doc_string_buffer[offset - test] > ' ')
234 test++;
235 if (get_doc_string_buffer[offset - test] != '\037')
236 return Qnil;
237 }
238
239 /* Scan the text and perform quoting with ^A (char code 1).
240 ^A^A becomes ^A, ^A0 becomes a null char, and ^A_ becomes a ^_. */
241 from = get_doc_string_buffer + offset;
242 to = get_doc_string_buffer + offset;
243 while (from != p)
244 {
245 if (*from == 1)
246 {
247 int c;
248
249 from++;
250 c = *from++;
251 if (c == 1)
252 *to++ = c;
253 else if (c == '0')
254 *to++ = 0;
255 else if (c == '_')
256 *to++ = 037;
257 else
258 {
259 unsigned char uc = c;
260 error ("\
261 Invalid data in documentation file -- %c followed by code %03o",
262 1, uc);
263 }
264 }
265 else
266 *to++ = *from++;
267 }
268
269 /* If DEFINITION, read from this buffer
270 the same way we would read bytes from a file. */
271 if (definition)
272 {
273 read_bytecode_pointer = (unsigned char *) get_doc_string_buffer + offset;
274 return Fread (Qlambda);
275 }
276
277 if (unibyte)
278 return make_unibyte_string (get_doc_string_buffer + offset,
279 to - (get_doc_string_buffer + offset));
280 else
281 {
282 /* The data determines whether the string is multibyte. */
283 ptrdiff_t nchars
284 = multibyte_chars_in_text (((unsigned char *) get_doc_string_buffer
285 + offset),
286 to - (get_doc_string_buffer + offset));
287 return make_string_from_bytes (get_doc_string_buffer + offset,
288 nchars,
289 to - (get_doc_string_buffer + offset));
290 }
291 }
292
293 /* Get a string from position FILEPOS and pass it through the Lisp reader.
294 We use this for fetching the bytecode string and constants vector
295 of a compiled function from the .elc file. */
296
297 Lisp_Object
298 read_doc_string (Lisp_Object filepos)
299 {
300 return get_doc_string (filepos, 0, 1);
301 }
302
303 static bool
304 reread_doc_file (Lisp_Object file)
305 {
306 if (NILP (file))
307 Fsnarf_documentation (Vdoc_file_name);
308 else
309 Fload (file, Qt, Qt, Qt, Qnil);
310
311 return 1;
312 }
313
314 DEFUN ("documentation", Fdocumentation, Sdocumentation, 1, 2, 0,
315 doc: /* Return the documentation string of FUNCTION.
316 Unless a non-nil second argument RAW is given, the
317 string is passed through `substitute-command-keys'. */)
318 (Lisp_Object function, Lisp_Object raw)
319 {
320 Lisp_Object fun;
321 Lisp_Object funcar;
322 Lisp_Object doc;
323 bool try_reload = 1;
324
325 documentation:
326
327 doc = Qnil;
328
329 if (SYMBOLP (function))
330 {
331 Lisp_Object tem = Fget (function, Qfunction_documentation);
332 if (!NILP (tem))
333 return Fdocumentation_property (function, Qfunction_documentation,
334 raw);
335 }
336
337 fun = Findirect_function (function, Qnil);
338 if (CONSP (fun) && EQ (XCAR (fun), Qmacro))
339 fun = XCDR (fun);
340 if (SUBRP (fun))
341 {
342 if (XSUBR (fun)->doc == 0)
343 return Qnil;
344 /* FIXME: This is not portable, as it assumes that string
345 pointers have the top bit clear. */
346 else if ((intptr_t) XSUBR (fun)->doc >= 0)
347 doc = build_string (XSUBR (fun)->doc);
348 else
349 doc = make_number ((intptr_t) XSUBR (fun)->doc);
350 }
351 else if (COMPILEDP (fun))
352 {
353 if ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) <= COMPILED_DOC_STRING)
354 return Qnil;
355 else
356 {
357 Lisp_Object tem = AREF (fun, COMPILED_DOC_STRING);
358 if (STRINGP (tem))
359 doc = tem;
360 else if (NATNUMP (tem) || CONSP (tem))
361 doc = tem;
362 else
363 return Qnil;
364 }
365 }
366 else if (STRINGP (fun) || VECTORP (fun))
367 {
368 return build_string ("Keyboard macro.");
369 }
370 else if (CONSP (fun))
371 {
372 funcar = XCAR (fun);
373 if (!SYMBOLP (funcar))
374 xsignal1 (Qinvalid_function, fun);
375 else if (EQ (funcar, Qkeymap))
376 return build_string ("Prefix command (definition is a keymap associating keystrokes with commands).");
377 else if (EQ (funcar, Qlambda)
378 || (EQ (funcar, Qclosure) && (fun = XCDR (fun), 1))
379 || EQ (funcar, Qautoload))
380 {
381 Lisp_Object tem1 = Fcdr (Fcdr (fun));
382 Lisp_Object tem = Fcar (tem1);
383 if (STRINGP (tem))
384 doc = tem;
385 /* Handle a doc reference--but these never come last
386 in the function body, so reject them if they are last. */
387 else if ((NATNUMP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
388 && !NILP (XCDR (tem1)))
389 doc = tem;
390 else
391 return Qnil;
392 }
393 else
394 goto oops;
395 }
396 else
397 {
398 oops:
399 xsignal1 (Qinvalid_function, fun);
400 }
401
402 /* If DOC is 0, it's typically because of a dumped file missing
403 from the DOC file (bug in src/Makefile.in). */
404 if (EQ (doc, make_number (0)))
405 doc = Qnil;
406 if (INTEGERP (doc) || CONSP (doc))
407 {
408 Lisp_Object tem;
409 tem = get_doc_string (doc, 0, 0);
410 if (NILP (tem) && try_reload)
411 {
412 /* The file is newer, we need to reset the pointers. */
413 try_reload = reread_doc_file (Fcar_safe (doc));
414 if (try_reload)
415 {
416 try_reload = 0;
417 goto documentation;
418 }
419 }
420 else
421 doc = tem;
422 }
423
424 if (NILP (raw))
425 doc = Fsubstitute_command_keys (doc);
426 return doc;
427 }
428
429 DEFUN ("documentation-property", Fdocumentation_property,
430 Sdocumentation_property, 2, 3, 0,
431 doc: /* Return the documentation string that is SYMBOL's PROP property.
432 Third argument RAW omitted or nil means pass the result through
433 `substitute-command-keys' if it is a string.
434
435 This differs from `get' in that it can refer to strings stored in the
436 `etc/DOC' file; and that it evaluates documentation properties that
437 aren't strings. */)
438 (Lisp_Object symbol, Lisp_Object prop, Lisp_Object raw)
439 {
440 bool try_reload = 1;
441 Lisp_Object tem;
442
443 documentation_property:
444
445 tem = Fget (symbol, prop);
446 if (EQ (tem, make_number (0)))
447 tem = Qnil;
448 if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
449 {
450 Lisp_Object doc = tem;
451 tem = get_doc_string (tem, 0, 0);
452 if (NILP (tem) && try_reload)
453 {
454 /* The file is newer, we need to reset the pointers. */
455 try_reload = reread_doc_file (Fcar_safe (doc));
456 if (try_reload)
457 {
458 try_reload = 0;
459 goto documentation_property;
460 }
461 }
462 }
463 else if (!STRINGP (tem))
464 /* Feval protects its argument. */
465 tem = Feval (tem, Qnil);
466
467 if (NILP (raw) && STRINGP (tem))
468 tem = Fsubstitute_command_keys (tem);
469 return tem;
470 }
471 \f
472 /* Scanning the DOC files and placing docstring offsets into functions. */
473
474 static void
475 store_function_docstring (Lisp_Object obj, ptrdiff_t offset)
476 {
477 /* Don't use indirect_function here, or defaliases will apply their
478 docstrings to the base functions (Bug#2603). */
479 Lisp_Object fun = SYMBOLP (obj) ? XSYMBOL (obj)->function : obj;
480
481 /* The type determines where the docstring is stored. */
482
483 /* Lisp_Subrs have a slot for it. */
484 if (SUBRP (fun))
485 {
486 intptr_t negative_offset = - offset;
487 XSUBR (fun)->doc = (char *) negative_offset;
488 }
489
490 /* If it's a lisp form, stick it in the form. */
491 else if (CONSP (fun))
492 {
493 Lisp_Object tem;
494
495 tem = XCAR (fun);
496 if (EQ (tem, Qlambda) || EQ (tem, Qautoload)
497 || (EQ (tem, Qclosure) && (fun = XCDR (fun), 1)))
498 {
499 tem = Fcdr (Fcdr (fun));
500 if (CONSP (tem) && INTEGERP (XCAR (tem)))
501 /* FIXME: This modifies typically pure hash-cons'd data, so its
502 correctness is quite delicate. */
503 XSETCAR (tem, make_number (offset));
504 }
505 else if (EQ (tem, Qmacro))
506 store_function_docstring (XCDR (fun), offset);
507 }
508
509 /* Bytecode objects sometimes have slots for it. */
510 else if (COMPILEDP (fun))
511 {
512 /* This bytecode object must have a slot for the
513 docstring, since we've found a docstring for it. */
514 if ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_DOC_STRING)
515 ASET (fun, COMPILED_DOC_STRING, make_number (offset));
516 else
517 {
518 AUTO_STRING (format, "No docstring slot for %s");
519 CALLN (Fmessage, format,
520 (SYMBOLP (obj)
521 ? SYMBOL_NAME (obj)
522 : build_string ("<anonymous>")));
523 }
524 }
525 }
526
527
528 DEFUN ("Snarf-documentation", Fsnarf_documentation, Ssnarf_documentation,
529 1, 1, 0,
530 doc: /* Used during Emacs initialization to scan the `etc/DOC...' file.
531 This searches the `etc/DOC...' file for doc strings and
532 records them in function and variable definitions.
533 The function takes one argument, FILENAME, a string;
534 it specifies the file name (without a directory) of the DOC file.
535 That file is found in `../etc' now; later, when the dumped Emacs is run,
536 the same file name is found in the `doc-directory'. */)
537 (Lisp_Object filename)
538 {
539 int fd;
540 char buf[1024 + 1];
541 int filled;
542 EMACS_INT pos;
543 Lisp_Object sym;
544 char *p, *name;
545 bool skip_file = 0;
546 ptrdiff_t count;
547 char const *dirname;
548 ptrdiff_t dirlen;
549 /* Preloaded defcustoms using custom-initialize-delay are added to
550 this list, but kept unbound. See http://debbugs.gnu.org/11565 */
551 Lisp_Object delayed_init =
552 find_symbol_value (intern ("custom-delayed-init-variables"));
553
554 if (EQ (delayed_init, Qunbound)) delayed_init = Qnil;
555
556 CHECK_STRING (filename);
557
558 if
559 #ifndef CANNOT_DUMP
560 (!NILP (Vpurify_flag))
561 #else /* CANNOT_DUMP */
562 (0)
563 #endif /* CANNOT_DUMP */
564 {
565 dirname = sibling_etc;
566 dirlen = sizeof sibling_etc - 1;
567 }
568 else
569 {
570 CHECK_STRING (Vdoc_directory);
571 dirname = SSDATA (Vdoc_directory);
572 dirlen = SBYTES (Vdoc_directory);
573 }
574
575 count = SPECPDL_INDEX ();
576 USE_SAFE_ALLOCA;
577 name = SAFE_ALLOCA (dirlen + SBYTES (filename) + 1);
578 lispstpcpy (stpcpy (name, dirname), filename); /*** Add this line ***/
579
580 /* Vbuild_files is nil when temacs is run, and non-nil after that. */
581 if (NILP (Vbuild_files))
582 {
583 static char const *const buildobj[] =
584 {
585 #include "buildobj.h"
586 };
587 int i = ARRAYELTS (buildobj);
588 while (0 <= --i)
589 Vbuild_files = Fcons (build_string (buildobj[i]), Vbuild_files);
590 Vbuild_files = Fpurecopy (Vbuild_files);
591 }
592
593 fd = emacs_open (name, O_RDONLY, 0);
594 if (fd < 0)
595 {
596 int open_errno = errno;
597 report_file_errno ("Opening doc string file", build_string (name),
598 open_errno);
599 }
600 record_unwind_protect_int (close_file_unwind, fd);
601 Vdoc_file_name = filename;
602 filled = 0;
603 pos = 0;
604 while (1)
605 {
606 register char *end;
607 if (filled < 512)
608 filled += emacs_read (fd, &buf[filled], sizeof buf - 1 - filled);
609 if (!filled)
610 break;
611
612 buf[filled] = 0;
613 end = buf + (filled < 512 ? filled : filled - 128);
614 p = memchr (buf, '\037', end - buf);
615 /* p points to ^_Ffunctionname\n or ^_Vvarname\n or ^_Sfilename\n. */
616 if (p)
617 {
618 end = strchr (p, '\n');
619
620 /* See if this is a file name, and if it is a file in build-files. */
621 if (p[1] == 'S')
622 {
623 skip_file = 0;
624 if (end - p > 4 && end[-2] == '.'
625 && (end[-1] == 'o' || end[-1] == 'c'))
626 {
627 ptrdiff_t len = end - p - 2;
628 char *fromfile = SAFE_ALLOCA (len + 1);
629 memcpy (fromfile, &p[2], len);
630 fromfile[len] = 0;
631 if (fromfile[len-1] == 'c')
632 fromfile[len-1] = 'o';
633
634 skip_file = NILP (Fmember (build_string (fromfile),
635 Vbuild_files));
636 }
637 }
638
639 sym = oblookup (Vobarray, p + 2,
640 multibyte_chars_in_text ((unsigned char *) p + 2,
641 end - p - 2),
642 end - p - 2);
643 /* Check skip_file so that when a function is defined several
644 times in different files (typically, once in xterm, once in
645 w32term, ...), we only pay attention to the one that
646 matters. */
647 if (! skip_file && SYMBOLP (sym))
648 {
649 /* Attach a docstring to a variable? */
650 if (p[1] == 'V')
651 {
652 /* Install file-position as variable-documentation property
653 and make it negative for a user-variable
654 (doc starts with a `*'). */
655 if (!NILP (Fboundp (sym))
656 || !NILP (Fmemq (sym, delayed_init)))
657 Fput (sym, Qvariable_documentation,
658 make_number ((pos + end + 1 - buf)
659 * (end[1] == '*' ? -1 : 1)));
660 }
661
662 /* Attach a docstring to a function? */
663 else if (p[1] == 'F')
664 {
665 if (!NILP (Ffboundp (sym)))
666 store_function_docstring (sym, pos + end + 1 - buf);
667 }
668 else if (p[1] == 'S')
669 ; /* Just a source file name boundary marker. Ignore it. */
670
671 else
672 error ("DOC file invalid at position %"pI"d", pos);
673 }
674 }
675 pos += end - buf;
676 filled -= end - buf;
677 memmove (buf, end, filled);
678 }
679
680 SAFE_FREE ();
681 return unbind_to (count, Qnil);
682 }
683 \f
684 /* Return true if text quoting style should default to quote `like this'. */
685 static bool
686 default_to_grave_quoting_style (void)
687 {
688 if (!text_quoting_flag)
689 return true;
690 if (! DISP_TABLE_P (Vstandard_display_table))
691 return false;
692 Lisp_Object dv = DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table),
693 LEFT_SINGLE_QUOTATION_MARK);
694 return (VECTORP (dv) && ASIZE (dv) == 1
695 && EQ (AREF (dv, 0), make_number ('`')));
696 }
697
698 /* Return the current effective text quoting style. */
699 enum text_quoting_style
700 text_quoting_style (void)
701 {
702 if (NILP (Vtext_quoting_style)
703 ? default_to_grave_quoting_style ()
704 : EQ (Vtext_quoting_style, Qgrave))
705 return GRAVE_QUOTING_STYLE;
706 else if (EQ (Vtext_quoting_style, Qstraight))
707 return STRAIGHT_QUOTING_STYLE;
708 else
709 return CURVE_QUOTING_STYLE;
710 }
711
712 DEFUN ("substitute-command-keys", Fsubstitute_command_keys,
713 Ssubstitute_command_keys, 1, 1, 0,
714 doc: /* Substitute key descriptions for command names in STRING.
715 Each substring of the form \\=\\[COMMAND] is replaced by either a
716 keystroke sequence that invokes COMMAND, or "M-x COMMAND" if COMMAND
717 is not on any keys.
718
719 Each substring of the form \\=\\{MAPVAR} is replaced by a summary of
720 the value of MAPVAR as a keymap. This summary is similar to the one
721 produced by `describe-bindings'. The summary ends in two newlines
722 (used by the helper function `help-make-xrefs' to find the end of the
723 summary).
724
725 Each substring of the form \\=\\<MAPVAR> specifies the use of MAPVAR
726 as the keymap for future \\=\\[COMMAND] substrings.
727
728 Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\='
729 is replaced by right quote. Left and right quote characters are
730 specified by `text-quoting-style'.
731
732 \\=\\= quotes the following character and is discarded; thus,
733 \\=\\=\\=\\= puts \\=\\= into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and
734 \\=\\=\\=` puts \\=` into the output.
735
736 Return the original STRING if no substitutions are made.
737 Otherwise, return a new string. */)
738 (Lisp_Object string)
739 {
740 char *buf;
741 bool changed = false;
742 unsigned char *strp;
743 char *bufp;
744 ptrdiff_t idx;
745 ptrdiff_t bsize;
746 Lisp_Object tem;
747 Lisp_Object keymap;
748 unsigned char const *start;
749 ptrdiff_t length, length_byte;
750 Lisp_Object name;
751 bool multibyte;
752 ptrdiff_t nchars;
753
754 if (NILP (string))
755 return Qnil;
756
757 CHECK_STRING (string);
758 tem = Qnil;
759 keymap = Qnil;
760 name = Qnil;
761
762 enum text_quoting_style quoting_style = text_quoting_style ();
763
764 multibyte = STRING_MULTIBYTE (string);
765 nchars = 0;
766
767 /* KEYMAP is either nil (which means search all the active keymaps)
768 or a specified local map (which means search just that and the
769 global map). If non-nil, it might come from Voverriding_local_map,
770 or from a \\<mapname> construct in STRING itself.. */
771 keymap = Voverriding_local_map;
772
773 bsize = SBYTES (string);
774
775 /* Add some room for expansion due to quote replacement. */
776 enum { EXTRA_ROOM = 20 };
777 if (bsize <= STRING_BYTES_BOUND - EXTRA_ROOM)
778 bsize += EXTRA_ROOM;
779
780 bufp = buf = xmalloc (bsize);
781
782 strp = SDATA (string);
783 while (strp < SDATA (string) + SBYTES (string))
784 {
785 if (strp[0] == '\\' && strp[1] == '=')
786 {
787 /* \= quotes the next character;
788 thus, to put in \[ without its special meaning, use \=\[. */
789 changed = true;
790 strp += 2;
791 if (multibyte)
792 {
793 int len;
794
795 STRING_CHAR_AND_LENGTH (strp, len);
796 if (len == 1)
797 *bufp = *strp;
798 else
799 memcpy (bufp, strp, len);
800 strp += len;
801 bufp += len;
802 nchars++;
803 }
804 else
805 *bufp++ = *strp++, nchars++;
806 }
807 else if (strp[0] == '\\' && strp[1] == '[')
808 {
809 ptrdiff_t start_idx;
810 bool follow_remap = 1;
811
812 strp += 2; /* skip \[ */
813 start = strp;
814 start_idx = start - SDATA (string);
815
816 while ((strp - SDATA (string)
817 < SBYTES (string))
818 && *strp != ']')
819 strp++;
820 length_byte = strp - start;
821
822 strp++; /* skip ] */
823
824 /* Save STRP in IDX. */
825 idx = strp - SDATA (string);
826 name = Fintern (make_string ((char *) start, length_byte), Qnil);
827
828 do_remap:
829 tem = Fwhere_is_internal (name, keymap, Qt, Qnil, Qnil);
830
831 if (VECTORP (tem) && ASIZE (tem) > 1
832 && EQ (AREF (tem, 0), Qremap) && SYMBOLP (AREF (tem, 1))
833 && follow_remap)
834 {
835 name = AREF (tem, 1);
836 follow_remap = 0;
837 goto do_remap;
838 }
839
840 /* Note the Fwhere_is_internal can GC, so we have to take
841 relocation of string contents into account. */
842 strp = SDATA (string) + idx;
843 start = SDATA (string) + start_idx;
844
845 if (NILP (tem)) /* but not on any keys */
846 {
847 ptrdiff_t offset = bufp - buf;
848 if (STRING_BYTES_BOUND - 4 < bsize)
849 string_overflow ();
850 buf = xrealloc (buf, bsize += 4);
851 bufp = buf + offset;
852 memcpy (bufp, "M-x ", 4);
853 bufp += 4;
854 nchars += 4;
855 if (multibyte)
856 length = multibyte_chars_in_text (start, length_byte);
857 else
858 length = length_byte;
859 goto subst;
860 }
861 else
862 { /* function is on a key */
863 tem = Fkey_description (tem, Qnil);
864 goto subst_string;
865 }
866 }
867 /* \{foo} is replaced with a summary of the keymap (symbol-value foo).
868 \<foo> just sets the keymap used for \[cmd]. */
869 else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<'))
870 {
871 struct buffer *oldbuf;
872 ptrdiff_t start_idx;
873 /* This is for computing the SHADOWS arg for describe_map_tree. */
874 Lisp_Object active_maps = Fcurrent_active_maps (Qnil, Qnil);
875 Lisp_Object earlier_maps;
876 ptrdiff_t count = SPECPDL_INDEX ();
877
878 strp += 2; /* skip \{ or \< */
879 start = strp;
880 start_idx = start - SDATA (string);
881
882 while ((strp - SDATA (string) < SBYTES (string))
883 && *strp != '}' && *strp != '>')
884 strp++;
885
886 length_byte = strp - start;
887 strp++; /* skip } or > */
888
889 /* Save STRP in IDX. */
890 idx = strp - SDATA (string);
891
892 /* Get the value of the keymap in TEM, or nil if undefined.
893 Do this while still in the user's current buffer
894 in case it is a local variable. */
895 name = Fintern (make_string ((char *) start, length_byte), Qnil);
896 tem = Fboundp (name);
897 if (! NILP (tem))
898 {
899 tem = Fsymbol_value (name);
900 if (! NILP (tem))
901 {
902 tem = get_keymap (tem, 0, 1);
903 /* Note that get_keymap can GC. */
904 strp = SDATA (string) + idx;
905 start = SDATA (string) + start_idx;
906 }
907 }
908
909 /* Now switch to a temp buffer. */
910 oldbuf = current_buffer;
911 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
912 /* This is for an unusual case where some after-change
913 function uses 'format' or 'prin1' or something else that
914 will thrash Vprin1_to_string_buffer we are using. */
915 specbind (Qinhibit_modification_hooks, Qt);
916
917 if (NILP (tem))
918 {
919 name = Fsymbol_name (name);
920 AUTO_STRING (msg_prefix, "\nUses keymap `");
921 insert1 (Fsubstitute_command_keys (msg_prefix));
922 insert_from_string (name, 0, 0,
923 SCHARS (name),
924 SBYTES (name), 1);
925 AUTO_STRING (msg_suffix, "', which is not currently defined.\n");
926 insert1 (Fsubstitute_command_keys (msg_suffix));
927 if (start[-1] == '<') keymap = Qnil;
928 }
929 else if (start[-1] == '<')
930 keymap = tem;
931 else
932 {
933 /* Get the list of active keymaps that precede this one.
934 If this one's not active, get nil. */
935 earlier_maps = Fcdr (Fmemq (tem, Freverse (active_maps)));
936 describe_map_tree (tem, 1, Fnreverse (earlier_maps),
937 Qnil, 0, 1, 0, 0, 1);
938 }
939 tem = Fbuffer_string ();
940 Ferase_buffer ();
941 set_buffer_internal (oldbuf);
942 unbind_to (count, Qnil);
943
944 subst_string:
945 start = SDATA (tem);
946 length = SCHARS (tem);
947 length_byte = SBYTES (tem);
948 subst:
949 changed = true;
950 {
951 ptrdiff_t offset = bufp - buf;
952 if (STRING_BYTES_BOUND - length_byte < bsize)
953 string_overflow ();
954 buf = xrealloc (buf, bsize += length_byte);
955 bufp = buf + offset;
956 memcpy (bufp, start, length_byte);
957 bufp += length_byte;
958 nchars += length;
959 /* Check STRING again in case gc relocated it. */
960 strp = SDATA (string) + idx;
961 }
962 }
963 else if ((strp[0] == '`' || strp[0] == '\'')
964 && quoting_style == CURVE_QUOTING_STYLE)
965 {
966 start = (unsigned char const *) (strp[0] == '`' ? uLSQM : uRSQM);
967 length = 1;
968 length_byte = sizeof uLSQM - 1;
969 idx = strp - SDATA (string) + 1;
970 goto subst;
971 }
972 else if (strp[0] == '`' && quoting_style == STRAIGHT_QUOTING_STYLE)
973 {
974 *bufp++ = '\'';
975 strp++;
976 nchars++;
977 changed = true;
978 }
979 else if (! multibyte)
980 *bufp++ = *strp++, nchars++;
981 else
982 {
983 int len;
984 int ch = STRING_CHAR_AND_LENGTH (strp, len);
985 if ((ch == LEFT_SINGLE_QUOTATION_MARK
986 || ch == RIGHT_SINGLE_QUOTATION_MARK)
987 && quoting_style != CURVE_QUOTING_STYLE)
988 {
989 *bufp++ = ((ch == LEFT_SINGLE_QUOTATION_MARK
990 && quoting_style == GRAVE_QUOTING_STYLE)
991 ? '`' : '\'');
992 strp += len;
993 changed = true;
994 }
995 else
996 {
997 do
998 *bufp++ = *strp++;
999 while (--len != 0);
1000 }
1001 nchars++;
1002 }
1003 }
1004
1005 if (changed) /* don't bother if nothing substituted */
1006 tem = make_string_from_bytes (buf, nchars, bufp - buf);
1007 else
1008 tem = string;
1009 xfree (buf);
1010 return tem;
1011 }
1012 \f
1013 void
1014 syms_of_doc (void)
1015 {
1016 DEFSYM (Qfunction_documentation, "function-documentation");
1017 DEFSYM (Qgrave, "grave");
1018 DEFSYM (Qstraight, "straight");
1019
1020 DEFVAR_LISP ("internal-doc-file-name", Vdoc_file_name,
1021 doc: /* Name of file containing documentation strings of built-in symbols. */);
1022 Vdoc_file_name = Qnil;
1023
1024 DEFVAR_LISP ("build-files", Vbuild_files,
1025 doc: /* A list of files used to build this Emacs binary. */);
1026 Vbuild_files = Qnil;
1027
1028 DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style,
1029 doc: /* Style to use for single quotes in help and messages.
1030 Its value should be a symbol.
1031 `curve' means quote with curved single quotes \\=‘like this\\=’.
1032 `straight' means quote with straight apostrophes \\='like this\\='.
1033 `grave' means quote with grave accent and apostrophe \\=`like this\\='.
1034 The default value nil acts like `curve' if curved single quotes are
1035 displayable, and like `grave' otherwise. */);
1036 Vtext_quoting_style = Qnil;
1037
1038 DEFVAR_BOOL ("internal--text-quoting-flag", text_quoting_flag,
1039 doc: /* If nil, a nil `text-quoting-style' is treated as `grave'. */);
1040 /* Initialized by ‘main’. */
1041
1042 defsubr (&Sdocumentation);
1043 defsubr (&Sdocumentation_property);
1044 defsubr (&Ssnarf_documentation);
1045 defsubr (&Ssubstitute_command_keys);
1046 }