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