]> code.delx.au - gnu-emacs/blob - src/doc.c
(Fdocumentation_property): Fix bug bypassing UNGCPRO.
[gnu-emacs] / src / doc.c
1 /* Record indices of function doc strings stored in a file.
2 Copyright (C) 1985, 86,93,94,95,97,98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include <config.h>
23
24 #include <sys/types.h>
25 #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/
26
27 #ifdef USG5
28 #include <fcntl.h>
29 #endif
30
31 #ifdef HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
34
35 #ifndef O_RDONLY
36 #define O_RDONLY 0
37 #endif
38
39 #include "lisp.h"
40 #include "buffer.h"
41 #include "keyboard.h"
42 #include "charset.h"
43
44 Lisp_Object Vdoc_file_name;
45
46 extern char *index ();
47
48 extern Lisp_Object Voverriding_local_map;
49
50 /* For VMS versions with limited file name syntax,
51 convert the name to something VMS will allow. */
52 static void
53 munge_doc_file_name (name)
54 char *name;
55 {
56 #ifdef VMS
57 #ifndef VMS4_4
58 /* For VMS versions with limited file name syntax,
59 convert the name to something VMS will allow. */
60 p = name;
61 while (*p)
62 {
63 if (*p == '-')
64 *p = '_';
65 p++;
66 }
67 #endif /* not VMS4_4 */
68 #ifdef VMS4_4
69 strcpy (name, sys_translate_unix (name));
70 #endif /* VMS4_4 */
71 #endif /* VMS */
72 }
73
74 /* Buffer used for reading from documentation file. */
75 static char *get_doc_string_buffer;
76 static int get_doc_string_buffer_size;
77
78 static unsigned char *read_bytecode_pointer;
79
80 /* readchar in lread.c calls back here to fetch the next byte.
81 If UNREADFLAG is 1, we unread a byte. */
82
83 int
84 read_bytecode_char (unreadflag)
85 int unreadflag;
86 {
87 if (unreadflag)
88 {
89 read_bytecode_pointer--;
90 return 0;
91 }
92 return *read_bytecode_pointer++;
93 }
94
95 /* Extract a doc string from a file. FILEPOS says where to get it.
96 If it is an integer, use that position in the standard DOC-... file.
97 If it is (FILE . INTEGER), use FILE as the file name
98 and INTEGER as the position in that file.
99 But if INTEGER is negative, make it positive.
100 (A negative integer is used for user variables, so we can distinguish
101 them without actually fetching the doc string.)
102
103 If UNIBYTE is nonzero, always make a unibyte string.
104
105 If DEFINITION is nonzero, assume this is for reading
106 a dynamic function definition; convert the bytestring
107 and the constants vector with appropriate byte handling,
108 and return a cons cell. */
109
110 Lisp_Object
111 get_doc_string (filepos, unibyte, definition)
112 Lisp_Object filepos;
113 int unibyte, definition;
114 {
115 char *from, *to;
116 register int fd;
117 register char *name;
118 register char *p, *p1;
119 int minsize;
120 int offset, position;
121 Lisp_Object file, tem;
122
123 if (INTEGERP (filepos))
124 {
125 file = Vdoc_file_name;
126 position = XINT (filepos);
127 }
128 else if (CONSP (filepos))
129 {
130 file = XCAR (filepos);
131 position = XINT (XCDR (filepos));
132 if (position < 0)
133 position = - position;
134 }
135 else
136 return Qnil;
137
138 if (!STRINGP (Vdoc_directory))
139 return Qnil;
140
141 if (!STRINGP (file))
142 return Qnil;
143
144 /* Put the file name in NAME as a C string.
145 If it is relative, combine it with Vdoc_directory. */
146
147 tem = Ffile_name_absolute_p (file);
148 if (NILP (tem))
149 {
150 minsize = XSTRING (Vdoc_directory)->size;
151 /* sizeof ("../etc/") == 8 */
152 if (minsize < 8)
153 minsize = 8;
154 name = (char *) alloca (minsize + XSTRING (file)->size + 8);
155 strcpy (name, XSTRING (Vdoc_directory)->data);
156 strcat (name, XSTRING (file)->data);
157 munge_doc_file_name (name);
158 }
159 else
160 {
161 name = (char *) XSTRING (file)->data;
162 }
163
164 fd = emacs_open (name, O_RDONLY, 0);
165 if (fd < 0)
166 {
167 #ifndef CANNOT_DUMP
168 if (!NILP (Vpurify_flag))
169 {
170 /* Preparing to dump; DOC file is probably not installed.
171 So check in ../etc. */
172 strcpy (name, "../etc/");
173 strcat (name, XSTRING (file)->data);
174 munge_doc_file_name (name);
175
176 fd = emacs_open (name, O_RDONLY, 0);
177 }
178 #endif
179 if (fd < 0)
180 error ("Cannot open doc string file \"%s\"", name);
181 }
182
183 /* Seek only to beginning of disk block. */
184 offset = position % (8 * 1024);
185 if (0 > lseek (fd, position - offset, 0))
186 {
187 emacs_close (fd);
188 error ("Position %ld out of range in doc string file \"%s\"",
189 position, name);
190 }
191
192 /* Read the doc string into get_doc_string_buffer.
193 P points beyond the data just read. */
194
195 p = get_doc_string_buffer;
196 while (1)
197 {
198 int space_left = (get_doc_string_buffer_size
199 - (p - get_doc_string_buffer));
200 int nread;
201
202 /* Allocate or grow the buffer if we need to. */
203 if (space_left == 0)
204 {
205 int in_buffer = p - get_doc_string_buffer;
206 get_doc_string_buffer_size += 16 * 1024;
207 get_doc_string_buffer
208 = (char *) xrealloc (get_doc_string_buffer,
209 get_doc_string_buffer_size + 1);
210 p = get_doc_string_buffer + in_buffer;
211 space_left = (get_doc_string_buffer_size
212 - (p - get_doc_string_buffer));
213 }
214
215 /* Read a disk block at a time.
216 If we read the same block last time, maybe skip this? */
217 if (space_left > 1024 * 8)
218 space_left = 1024 * 8;
219 nread = emacs_read (fd, p, space_left);
220 if (nread < 0)
221 {
222 emacs_close (fd);
223 error ("Read error on documentation file");
224 }
225 p[nread] = 0;
226 if (!nread)
227 break;
228 if (p == get_doc_string_buffer)
229 p1 = index (p + offset, '\037');
230 else
231 p1 = index (p, '\037');
232 if (p1)
233 {
234 *p1 = 0;
235 p = p1;
236 break;
237 }
238 p += nread;
239 }
240 emacs_close (fd);
241
242 /* Scan the text and perform quoting with ^A (char code 1).
243 ^A^A becomes ^A, ^A0 becomes a null char, and ^A_ becomes a ^_. */
244 from = get_doc_string_buffer + offset;
245 to = get_doc_string_buffer + offset;
246 while (from != p)
247 {
248 if (*from == 1)
249 {
250 int c;
251
252 from++;
253 c = *from++;
254 if (c == 1)
255 *to++ = c;
256 else if (c == '0')
257 *to++ = 0;
258 else if (c == '_')
259 *to++ = 037;
260 else
261 error ("Invalid data in documentation file -- ^A followed by code 0%o", c);
262 }
263 else
264 *to++ = *from++;
265 }
266
267 /* If DEFINITION, read from this buffer
268 the same way we would read bytes from a file. */
269 if (definition)
270 {
271 read_bytecode_pointer = get_doc_string_buffer + offset;
272 return Fread (Qlambda);
273 }
274
275 if (unibyte)
276 return make_unibyte_string (get_doc_string_buffer + offset,
277 to - (get_doc_string_buffer + offset));
278 else
279 {
280 /* Let the data determine whether the string is multibyte,
281 even if Emacs is running in --unibyte mode. */
282 int nchars = multibyte_chars_in_text (get_doc_string_buffer + offset,
283 to - (get_doc_string_buffer + offset));
284 return make_string_from_bytes (get_doc_string_buffer + offset,
285 nchars,
286 to - (get_doc_string_buffer + offset));
287 }
288 }
289
290 /* Get a string from position FILEPOS and pass it through the Lisp reader.
291 We use this for fetching the bytecode string and constants vector
292 of a compiled function from the .elc file. */
293
294 Lisp_Object
295 read_doc_string (filepos)
296 Lisp_Object filepos;
297 {
298 return get_doc_string (filepos, 0, 1);
299 }
300
301 DEFUN ("documentation", Fdocumentation, Sdocumentation, 1, 2, 0,
302 "Return the documentation string of FUNCTION.\n\
303 Unless a non-nil second argument RAW is given, the\n\
304 string is passed through `substitute-command-keys'.")
305 (function, raw)
306 Lisp_Object function, raw;
307 {
308 Lisp_Object fun;
309 Lisp_Object funcar;
310 Lisp_Object tem, doc;
311
312 fun = Findirect_function (function);
313
314 if (SUBRP (fun))
315 {
316 if (XSUBR (fun)->doc == 0) return Qnil;
317 if ((EMACS_INT) XSUBR (fun)->doc >= 0)
318 doc = build_string (XSUBR (fun)->doc);
319 else
320 doc = get_doc_string (make_number (- (EMACS_INT) XSUBR (fun)->doc),
321 0, 0);
322 }
323 else if (COMPILEDP (fun))
324 {
325 if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) <= COMPILED_DOC_STRING)
326 return Qnil;
327 tem = XVECTOR (fun)->contents[COMPILED_DOC_STRING];
328 if (STRINGP (tem))
329 doc = tem;
330 else if (NATNUMP (tem) || CONSP (tem))
331 doc = get_doc_string (tem, 0, 0);
332 else
333 return Qnil;
334 }
335 else if (STRINGP (fun) || VECTORP (fun))
336 {
337 return build_string ("Keyboard macro.");
338 }
339 else if (CONSP (fun))
340 {
341 funcar = Fcar (fun);
342 if (!SYMBOLP (funcar))
343 return Fsignal (Qinvalid_function, Fcons (fun, Qnil));
344 else if (EQ (funcar, Qkeymap))
345 return build_string ("Prefix command (definition is a keymap associating keystrokes with commands).");
346 else if (EQ (funcar, Qlambda)
347 || EQ (funcar, Qautoload))
348 {
349 Lisp_Object tem1;
350 tem1 = Fcdr (Fcdr (fun));
351 tem = Fcar (tem1);
352 if (STRINGP (tem))
353 doc = tem;
354 /* Handle a doc reference--but these never come last
355 in the function body, so reject them if they are last. */
356 else if ((NATNUMP (tem) || CONSP (tem))
357 && ! NILP (XCDR (tem1)))
358 doc = get_doc_string (tem, 0, 0);
359 else
360 return Qnil;
361 }
362 else if (EQ (funcar, Qmocklisp))
363 return Qnil;
364 else if (EQ (funcar, Qmacro))
365 return Fdocumentation (Fcdr (fun), raw);
366 else
367 goto oops;
368 }
369 else
370 {
371 oops:
372 Fsignal (Qinvalid_function, Fcons (fun, Qnil));
373 }
374
375 if (NILP (raw))
376 {
377 struct gcpro gcpro1;
378
379 GCPRO1 (doc);
380 doc = Fsubstitute_command_keys (doc);
381 UNGCPRO;
382 }
383 return doc;
384 }
385
386 DEFUN ("documentation-property", Fdocumentation_property, Sdocumentation_property, 2, 3, 0,
387 "Return the documentation string that is SYMBOL's PROP property.\n\
388 This is like `get', but it can refer to strings stored in the\n\
389 `etc/DOC' file; and if the value is a string, it is passed through\n\
390 `substitute-command-keys'. A non-nil third argument RAW avoids this\n\
391 translation.")
392 (symbol, prop, raw)
393 Lisp_Object symbol, prop, raw;
394 {
395 Lisp_Object tem;
396
397 tem = Fget (symbol, prop);
398 if (INTEGERP (tem))
399 tem = get_doc_string (XINT (tem) > 0 ? tem : make_number (- XINT (tem)), 0, 0);
400 else if (CONSP (tem))
401 tem = get_doc_string (tem, 0, 0);
402 if (NILP (raw) && STRINGP (tem))
403 {
404 struct gcpro gcpro1;
405
406 GCPRO1 (tem);
407 tem = Fsubstitute_command_keys (tem);
408 UNGCPRO;
409 }
410 return tem;
411 }
412 \f
413 /* Scanning the DOC files and placing docstring offsets into functions. */
414
415 static void
416 store_function_docstring (fun, offset)
417 Lisp_Object fun;
418 /* Use EMACS_INT because we get this from pointer subtraction. */
419 EMACS_INT offset;
420 {
421 fun = indirect_function (fun);
422
423 /* The type determines where the docstring is stored. */
424
425 /* Lisp_Subrs have a slot for it. */
426 if (SUBRP (fun))
427 XSUBR (fun)->doc = (char *) - offset;
428
429 /* If it's a lisp form, stick it in the form. */
430 else if (CONSP (fun))
431 {
432 Lisp_Object tem;
433
434 tem = XCAR (fun);
435 if (EQ (tem, Qlambda) || EQ (tem, Qautoload))
436 {
437 tem = Fcdr (Fcdr (fun));
438 if (CONSP (tem) && INTEGERP (XCAR (tem)))
439 XSETFASTINT (XCAR (tem), offset);
440 }
441 else if (EQ (tem, Qmacro))
442 store_function_docstring (XCDR (fun), offset);
443 }
444
445 /* Bytecode objects sometimes have slots for it. */
446 else if (COMPILEDP (fun))
447 {
448 /* This bytecode object must have a slot for the
449 docstring, since we've found a docstring for it. */
450 if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_DOC_STRING)
451 XSETFASTINT (XVECTOR (fun)->contents[COMPILED_DOC_STRING], offset);
452 }
453 }
454
455
456 DEFUN ("Snarf-documentation", Fsnarf_documentation, Ssnarf_documentation,
457 1, 1, 0,
458 "Used during Emacs initialization, before dumping runnable Emacs,\n\
459 to find pointers to doc strings stored in `etc/DOC...' and\n\
460 record them in function definitions.\n\
461 One arg, FILENAME, a string which does not include a directory.\n\
462 The file is found in `../etc' now; found in the `data-directory'\n\
463 when doc strings are referred to later in the dumped Emacs.")
464 (filename)
465 Lisp_Object filename;
466 {
467 int fd;
468 char buf[1024 + 1];
469 register int filled;
470 register int pos;
471 register char *p, *end;
472 Lisp_Object sym, fun, tem;
473 char *name;
474 extern char *index ();
475
476 #ifndef CANNOT_DUMP
477 if (NILP (Vpurify_flag))
478 error ("Snarf-documentation can only be called in an undumped Emacs");
479 #endif
480
481 CHECK_STRING (filename, 0);
482
483 #ifndef CANNOT_DUMP
484 name = (char *) alloca (XSTRING (filename)->size + 14);
485 strcpy (name, "../etc/");
486 #else /* CANNOT_DUMP */
487 CHECK_STRING (Vdoc_directory, 0);
488 name = (char *) alloca (XSTRING (filename)->size +
489 XSTRING (Vdoc_directory)->size + 1);
490 strcpy (name, XSTRING (Vdoc_directory)->data);
491 #endif /* CANNOT_DUMP */
492 strcat (name, XSTRING (filename)->data); /*** Add this line ***/
493 #ifdef VMS
494 #ifndef VMS4_4
495 /* For VMS versions with limited file name syntax,
496 convert the name to something VMS will allow. */
497 p = name;
498 while (*p)
499 {
500 if (*p == '-')
501 *p = '_';
502 p++;
503 }
504 #endif /* not VMS4_4 */
505 #ifdef VMS4_4
506 strcpy (name, sys_translate_unix (name));
507 #endif /* VMS4_4 */
508 #endif /* VMS */
509
510 fd = emacs_open (name, O_RDONLY, 0);
511 if (fd < 0)
512 report_file_error ("Opening doc string file",
513 Fcons (build_string (name), Qnil));
514 Vdoc_file_name = filename;
515 filled = 0;
516 pos = 0;
517 while (1)
518 {
519 if (filled < 512)
520 filled += emacs_read (fd, &buf[filled], sizeof buf - 1 - filled);
521 if (!filled)
522 break;
523
524 buf[filled] = 0;
525 p = buf;
526 end = buf + (filled < 512 ? filled : filled - 128);
527 while (p != end && *p != '\037') p++;
528 /* p points to ^_Ffunctionname\n or ^_Vvarname\n. */
529 if (p != end)
530 {
531 end = index (p, '\n');
532 sym = oblookup (Vobarray, p + 2,
533 multibyte_chars_in_text (p + 2, end - p - 2),
534 end - p - 2);
535 if (SYMBOLP (sym))
536 {
537 /* Attach a docstring to a variable? */
538 if (p[1] == 'V')
539 {
540 /* Install file-position as variable-documentation property
541 and make it negative for a user-variable
542 (doc starts with a `*'). */
543 Fput (sym, Qvariable_documentation,
544 make_number ((pos + end + 1 - buf)
545 * (end[1] == '*' ? -1 : 1)));
546 }
547
548 /* Attach a docstring to a function? */
549 else if (p[1] == 'F')
550 store_function_docstring (sym, pos + end + 1 - buf);
551
552 else
553 error ("DOC file invalid at position %d", pos);
554 }
555 }
556 pos += end - buf;
557 filled -= end - buf;
558 bcopy (end, buf, filled);
559 }
560 emacs_close (fd);
561 return Qnil;
562 }
563 \f
564 DEFUN ("substitute-command-keys", Fsubstitute_command_keys,
565 Ssubstitute_command_keys, 1, 1, 0,
566 "Substitute key descriptions for command names in STRING.\n\
567 Return a new string which is STRING with substrings of the form \\=\\[COMMAND]\n\
568 replaced by either: a keystroke sequence that will invoke COMMAND,\n\
569 or \"M-x COMMAND\" if COMMAND is not on any keys.\n\
570 Substrings of the form \\=\\{MAPVAR} are replaced by summaries\n\
571 \(made by describe-bindings) of the value of MAPVAR, taken as a keymap.\n\
572 Substrings of the form \\=\\<MAPVAR> specify to use the value of MAPVAR\n\
573 as the keymap for future \\=\\[COMMAND] substrings.\n\
574 \\=\\= quotes the following character and is discarded;\n\
575 thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ into the output.")
576 (string)
577 Lisp_Object string;
578 {
579 unsigned char *buf;
580 int changed = 0;
581 register unsigned char *strp;
582 register unsigned char *bufp;
583 int idx;
584 int bsize;
585 unsigned char *new;
586 Lisp_Object tem;
587 Lisp_Object keymap;
588 unsigned char *start;
589 int length, length_byte;
590 Lisp_Object name;
591 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
592 int multibyte;
593 int nchars;
594
595 if (NILP (string))
596 return Qnil;
597
598 CHECK_STRING (string, 0);
599 tem = Qnil;
600 keymap = Qnil;
601 name = Qnil;
602 GCPRO4 (string, tem, keymap, name);
603
604 multibyte = STRING_MULTIBYTE (string);
605 nchars = 0;
606
607 /* KEYMAP is either nil (which means search all the active keymaps)
608 or a specified local map (which means search just that and the
609 global map). If non-nil, it might come from Voverriding_local_map,
610 or from a \\<mapname> construct in STRING itself.. */
611 keymap = current_kboard->Voverriding_terminal_local_map;
612 if (NILP (keymap))
613 keymap = Voverriding_local_map;
614
615 bsize = STRING_BYTES (XSTRING (string));
616 bufp = buf = (unsigned char *) xmalloc (bsize);
617
618 strp = (unsigned char *) XSTRING (string)->data;
619 while (strp < XSTRING (string)->data + STRING_BYTES (XSTRING (string)))
620 {
621 if (strp[0] == '\\' && strp[1] == '=')
622 {
623 /* \= quotes the next character;
624 thus, to put in \[ without its special meaning, use \=\[. */
625 changed = 1;
626 strp += 2;
627 if (multibyte)
628 {
629 int len;
630 int maxlen = XSTRING (string)->data + STRING_BYTES (XSTRING (string)) - strp;
631
632 STRING_CHAR_AND_LENGTH (strp, maxlen, len);
633 if (len == 1)
634 *bufp = *strp;
635 else
636 bcopy (strp, bufp, len);
637 strp += len;
638 bufp += len;
639 nchars++;
640 }
641 else
642 *bufp++ = *strp++, nchars++;
643 }
644 else if (strp[0] == '\\' && strp[1] == '[')
645 {
646 Lisp_Object firstkey;
647
648 changed = 1;
649 strp += 2; /* skip \[ */
650 start = strp;
651
652 while ((strp - (unsigned char *) XSTRING (string)->data
653 < STRING_BYTES (XSTRING (string)))
654 && *strp != ']')
655 strp++;
656 length_byte = strp - start;
657
658 strp++; /* skip ] */
659
660 /* Save STRP in IDX. */
661 idx = strp - (unsigned char *) XSTRING (string)->data;
662 tem = Fintern (make_string (start, length_byte), Qnil);
663 tem = Fwhere_is_internal (tem, keymap, Qt, Qnil);
664
665 /* Disregard menu bar bindings; it is positively annoying to
666 mention them when there's no menu bar, and it isn't terribly
667 useful even when there is a menu bar. */
668 if (!NILP (tem))
669 {
670 firstkey = Faref (tem, make_number (0));
671 if (EQ (firstkey, Qmenu_bar))
672 tem = Qnil;
673 }
674
675 if (NILP (tem)) /* but not on any keys */
676 {
677 new = (unsigned char *) xrealloc (buf, bsize += 4);
678 bufp += new - buf;
679 buf = new;
680 bcopy ("M-x ", bufp, 4);
681 bufp += 4;
682 nchars += 4;
683 if (multibyte)
684 length = multibyte_chars_in_text (start, length_byte);
685 else
686 length = length_byte;
687 goto subst;
688 }
689 else
690 { /* function is on a key */
691 tem = Fkey_description (tem);
692 goto subst_string;
693 }
694 }
695 /* \{foo} is replaced with a summary of the keymap (symbol-value foo).
696 \<foo> just sets the keymap used for \[cmd]. */
697 else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<'))
698 {
699 struct buffer *oldbuf;
700
701 changed = 1;
702 strp += 2; /* skip \{ or \< */
703 start = strp;
704
705 while ((strp - (unsigned char *) XSTRING (string)->data
706 < XSTRING (string)->size)
707 && *strp != '}' && *strp != '>')
708 strp++;
709
710 length_byte = strp - start;
711 strp++; /* skip } or > */
712
713 /* Save STRP in IDX. */
714 idx = strp - (unsigned char *) XSTRING (string)->data;
715
716 /* Get the value of the keymap in TEM, or nil if undefined.
717 Do this while still in the user's current buffer
718 in case it is a local variable. */
719 name = Fintern (make_string (start, length_byte), Qnil);
720 tem = Fboundp (name);
721 if (! NILP (tem))
722 {
723 tem = Fsymbol_value (name);
724 if (! NILP (tem))
725 tem = get_keymap_1 (tem, 0, 1);
726 }
727
728 /* Now switch to a temp buffer. */
729 oldbuf = current_buffer;
730 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer));
731
732 if (NILP (tem))
733 {
734 name = Fsymbol_name (name);
735 insert_string ("\nUses keymap \"");
736 insert_from_string (name, 0, 0,
737 XSTRING (name)->size,
738 STRING_BYTES (XSTRING (name)), 1);
739 insert_string ("\", which is not currently defined.\n");
740 if (start[-1] == '<') keymap = Qnil;
741 }
742 else if (start[-1] == '<')
743 keymap = tem;
744 else
745 describe_map_tree (tem, 1, Qnil, Qnil, (char *)0, 1, 0, 0);
746 tem = Fbuffer_string ();
747 Ferase_buffer ();
748 set_buffer_internal (oldbuf);
749
750 subst_string:
751 start = XSTRING (tem)->data;
752 length = XSTRING (tem)->size;
753 length_byte = STRING_BYTES (XSTRING (tem));
754 subst:
755 new = (unsigned char *) xrealloc (buf, bsize += length_byte);
756 bufp += new - buf;
757 buf = new;
758 bcopy (start, bufp, length_byte);
759 bufp += length_byte;
760 nchars += length;
761 /* Check STRING again in case gc relocated it. */
762 strp = (unsigned char *) XSTRING (string)->data + idx;
763 }
764 else if (! multibyte) /* just copy other chars */
765 *bufp++ = *strp++, nchars++;
766 else
767 {
768 int len;
769 int maxlen = XSTRING (string)->data + STRING_BYTES (XSTRING (string)) - strp;
770
771 STRING_CHAR_AND_LENGTH (strp, maxlen, len);
772 if (len == 1)
773 *bufp = *strp;
774 else
775 bcopy (strp, bufp, len);
776 strp += len;
777 bufp += len;
778 nchars++;
779 }
780 }
781
782 if (changed) /* don't bother if nothing substituted */
783 tem = make_string_from_bytes (buf, nchars, bufp - buf);
784 else
785 tem = string;
786 xfree (buf);
787 RETURN_UNGCPRO (tem);
788 }
789 \f
790 void
791 syms_of_doc ()
792 {
793 DEFVAR_LISP ("internal-doc-file-name", &Vdoc_file_name,
794 "Name of file containing documentation strings of built-in symbols.");
795 Vdoc_file_name = Qnil;
796
797 defsubr (&Sdocumentation);
798 defsubr (&Sdocumentation_property);
799 defsubr (&Ssnarf_documentation);
800 defsubr (&Ssubstitute_command_keys);
801 }