Mercurial > emacs
annotate src/doc.c @ 6276:e76136b468b3
Explain typing C-M-
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 09 Mar 1994 23:59:52 +0000 |
parents | 8b3f54fb451f |
children | 653504b6b5dd |
rev | line source |
---|---|
297 | 1 /* Record indices of function doc strings stored in a file. |
2961 | 2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc. |
297 | 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 1, 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, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3999
diff
changeset
|
21 #include <config.h> |
297 | 22 |
23 #include <sys/types.h> | |
24 #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/ | |
25 | |
26 #ifdef USG5 | |
27 #include <fcntl.h> | |
28 #endif | |
29 | |
30 #ifndef O_RDONLY | |
31 #define O_RDONLY 0 | |
32 #endif | |
33 | |
34 #include "lisp.h" | |
35 #include "buffer.h" | |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
36 #include "keyboard.h" |
297 | 37 |
961
8d2cbfd93066
* doc.c (Vdata_directory): Removed; this is declared in callproc.c.
Jim Blandy <jimb@redhat.com>
parents:
943
diff
changeset
|
38 Lisp_Object Vdoc_file_name; |
297 | 39 |
5784
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
40 extern Lisp_Object Voverriding_local_map; |
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
41 |
297 | 42 Lisp_Object |
43 get_doc_string (filepos) | |
44 long filepos; | |
45 { | |
46 char buf[512 * 32 + 1]; | |
47 register int fd; | |
48 register char *name; | |
49 register char *p, *p1; | |
50 register int count; | |
51 extern char *index (); | |
52 | |
6030
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
53 if (XTYPE (Vdoc_directory) != Lisp_String |
297 | 54 || XTYPE (Vdoc_file_name) != Lisp_String) |
55 return Qnil; | |
56 | |
6030
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
57 name = (char *) alloca (XSTRING (Vdoc_directory)->size |
297 | 58 + XSTRING (Vdoc_file_name)->size + 8); |
6030
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
59 strcpy (name, XSTRING (Vdoc_directory)->data); |
297 | 60 strcat (name, XSTRING (Vdoc_file_name)->data); |
61 #ifdef VMS | |
62 #ifndef VMS4_4 | |
63 /* For VMS versions with limited file name syntax, | |
64 convert the name to something VMS will allow. */ | |
65 p = name; | |
66 while (*p) | |
67 { | |
68 if (*p == '-') | |
69 *p = '_'; | |
70 p++; | |
71 } | |
72 #endif /* not VMS4_4 */ | |
73 #ifdef VMS4_4 | |
74 strcpy (name, sys_translate_unix (name)); | |
75 #endif /* VMS4_4 */ | |
76 #endif /* VMS */ | |
77 | |
78 fd = open (name, O_RDONLY, 0); | |
79 if (fd < 0) | |
80 error ("Cannot open doc string file \"%s\"", name); | |
81 if (0 > lseek (fd, filepos, 0)) | |
82 { | |
83 close (fd); | |
84 error ("Position %ld out of range in doc string file \"%s\"", | |
85 filepos, name); | |
86 } | |
87 p = buf; | |
88 while (p != buf + sizeof buf - 1) | |
89 { | |
90 count = read (fd, p, 512); | |
91 p[count] = 0; | |
92 if (!count) | |
93 break; | |
94 p1 = index (p, '\037'); | |
95 if (p1) | |
96 { | |
97 *p1 = 0; | |
98 p = p1; | |
99 break; | |
100 } | |
101 p += count; | |
102 } | |
103 close (fd); | |
104 return make_string (buf, p - buf); | |
105 } | |
106 | |
570 | 107 DEFUN ("documentation", Fdocumentation, Sdocumentation, 1, 2, 0, |
604 | 108 "Return the documentation string of FUNCTION.\n\ |
109 Unless a non-nil second argument is given, the\n\ | |
570 | 110 string is passed through `substitute-command-keys'.") |
647 | 111 (function, raw) |
112 Lisp_Object function, raw; | |
297 | 113 { |
114 Lisp_Object fun; | |
115 Lisp_Object funcar; | |
570 | 116 Lisp_Object tem, doc; |
297 | 117 |
647 | 118 fun = Findirect_function (function); |
297 | 119 |
120 switch (XTYPE (fun)) | |
121 { | |
122 case Lisp_Subr: | |
123 if (XSUBR (fun)->doc == 0) return Qnil; | |
124 if ((int) XSUBR (fun)->doc >= 0) | |
570 | 125 doc = build_string (XSUBR (fun)->doc); |
297 | 126 else |
570 | 127 doc = get_doc_string (- (int) XSUBR (fun)->doc); |
128 break; | |
297 | 129 |
130 case Lisp_Compiled: | |
131 if (XVECTOR (fun)->size <= COMPILED_DOC_STRING) | |
132 return Qnil; | |
133 tem = XVECTOR (fun)->contents[COMPILED_DOC_STRING]; | |
134 if (XTYPE (tem) == Lisp_String) | |
570 | 135 doc = tem; |
136 else if (XTYPE (tem) == Lisp_Int && XINT (tem) >= 0) | |
137 doc = get_doc_string (XFASTINT (tem)); | |
138 else | |
139 return Qnil; | |
140 break; | |
297 | 141 |
142 case Lisp_String: | |
143 case Lisp_Vector: | |
144 return build_string ("Keyboard macro."); | |
145 | |
146 case Lisp_Cons: | |
147 funcar = Fcar (fun); | |
148 if (XTYPE (funcar) != Lisp_Symbol) | |
149 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
647 | 150 else if (EQ (funcar, Qkeymap)) |
297 | 151 return build_string ("Prefix command (definition is a keymap associating keystrokes with\n\ |
152 subcommands.)"); | |
647 | 153 else if (EQ (funcar, Qlambda) |
154 || EQ (funcar, Qautoload)) | |
297 | 155 { |
156 tem = Fcar (Fcdr (Fcdr (fun))); | |
157 if (XTYPE (tem) == Lisp_String) | |
570 | 158 doc = tem; |
159 else if (XTYPE (tem) == Lisp_Int && XINT (tem) >= 0) | |
160 doc = get_doc_string (XFASTINT (tem)); | |
161 else | |
162 return Qnil; | |
647 | 163 |
164 break; | |
297 | 165 } |
647 | 166 else if (EQ (funcar, Qmocklisp)) |
297 | 167 return Qnil; |
647 | 168 else if (EQ (funcar, Qmacro)) |
570 | 169 return Fdocumentation (Fcdr (fun), raw); |
297 | 170 |
171 /* Fall through to the default to report an error. */ | |
172 | |
173 default: | |
174 return Fsignal (Qinvalid_function, Fcons (fun, Qnil)); | |
175 } | |
570 | 176 |
577 | 177 if (NILP (raw)) |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
178 { |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
179 struct gcpro gcpro1; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
180 |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
181 GCPRO1 (doc); |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
182 doc = Fsubstitute_command_keys (doc); |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
183 UNGCPRO; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
184 } |
570 | 185 return doc; |
297 | 186 } |
187 | |
5248
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
188 DEFUN ("documentation-property", Fdocumentation_property, Sdocumentation_property, 2, 3, 0, |
297 | 189 "Return the documentation string that is SYMBOL's PROP property.\n\ |
570 | 190 This is like `get', but it can refer to strings stored in the\n\ |
604 | 191 `etc/DOC' file; and if the value is a string, it is passed through\n\ |
577 | 192 `substitute-command-keys'. A non-nil third argument avoids this\n\ |
193 translation.") | |
570 | 194 (sym, prop, raw) |
195 Lisp_Object sym, prop, raw; | |
297 | 196 { |
197 register Lisp_Object tem; | |
198 | |
199 tem = Fget (sym, prop); | |
200 if (XTYPE (tem) == Lisp_Int) | |
201 tem = get_doc_string (XINT (tem) > 0 ? XINT (tem) : - XINT (tem)); | |
577 | 202 if (NILP (raw) && XTYPE (tem) == Lisp_String) |
312
adba7439e87c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
297
diff
changeset
|
203 return Fsubstitute_command_keys (tem); |
adba7439e87c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
297
diff
changeset
|
204 return tem; |
297 | 205 } |
206 | |
1651
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
207 /* Scanning the DOC files and placing docstring offsets into functions. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
208 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
209 static void |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
210 store_function_docstring (fun, offset) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
211 Lisp_Object fun; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
212 int offset; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
213 { |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
214 fun = indirect_function (fun); |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
215 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
216 /* The type determines where the docstring is stored. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
217 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
218 /* Lisp_Subrs have a slot for it. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
219 if (XTYPE (fun) == Lisp_Subr) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
220 XSUBR (fun)->doc = (char *) - offset; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
221 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
222 /* If it's a lisp form, stick it in the form. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
223 else if (CONSP (fun)) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
224 { |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
225 Lisp_Object tem; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
226 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
227 tem = XCONS (fun)->car; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
228 if (EQ (tem, Qlambda) || EQ (tem, Qautoload)) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
229 { |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
230 tem = Fcdr (Fcdr (fun)); |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
231 if (CONSP (tem) && |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
232 XTYPE (XCONS (tem)->car) == Lisp_Int) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
233 XFASTINT (XCONS (tem)->car) = offset; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
234 } |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
235 else if (EQ (tem, Qmacro)) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
236 store_function_docstring (XCONS (fun)->cdr, offset); |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
237 } |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
238 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
239 /* Bytecode objects sometimes have slots for it. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
240 else if (XTYPE (fun) == Lisp_Compiled) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
241 { |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
242 /* This bytecode object must have a slot for the |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
243 docstring, since we've found a docstring for it. */ |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
244 if (XVECTOR (fun)->size <= COMPILED_DOC_STRING) |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
245 abort (); |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
246 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
247 XFASTINT (XVECTOR (fun)->contents[COMPILED_DOC_STRING]) = offset; |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
248 } |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
249 } |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
250 |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
251 |
297 | 252 DEFUN ("Snarf-documentation", Fsnarf_documentation, Ssnarf_documentation, |
253 1, 1, 0, | |
254 "Used during Emacs initialization, before dumping runnable Emacs,\n\ | |
604 | 255 to find pointers to doc strings stored in `etc/DOC...' and\n\ |
297 | 256 record them in function definitions.\n\ |
257 One arg, FILENAME, a string which does not include a directory.\n\ | |
604 | 258 The file is found in `../etc' now; found in the `data-directory'\n\ |
297 | 259 when doc strings are referred to later in the dumped Emacs.") |
260 (filename) | |
261 Lisp_Object filename; | |
262 { | |
263 int fd; | |
264 char buf[1024 + 1]; | |
265 register int filled; | |
266 register int pos; | |
267 register char *p, *end; | |
268 Lisp_Object sym, fun, tem; | |
269 char *name; | |
270 extern char *index (); | |
271 | |
1116
6d0d442e2ada
* doc.c (Fsnarf_documentation): Signal an error if this is
Jim Blandy <jimb@redhat.com>
parents:
961
diff
changeset
|
272 #ifndef CANNOT_DUMP |
6d0d442e2ada
* doc.c (Fsnarf_documentation): Signal an error if this is
Jim Blandy <jimb@redhat.com>
parents:
961
diff
changeset
|
273 if (NILP (Vpurify_flag)) |
6d0d442e2ada
* doc.c (Fsnarf_documentation): Signal an error if this is
Jim Blandy <jimb@redhat.com>
parents:
961
diff
changeset
|
274 error ("Snarf-documentation can only be called in an undumped Emacs"); |
6d0d442e2ada
* doc.c (Fsnarf_documentation): Signal an error if this is
Jim Blandy <jimb@redhat.com>
parents:
961
diff
changeset
|
275 #endif |
6d0d442e2ada
* doc.c (Fsnarf_documentation): Signal an error if this is
Jim Blandy <jimb@redhat.com>
parents:
961
diff
changeset
|
276 |
297 | 277 CHECK_STRING (filename, 0); |
278 | |
279 #ifndef CANNOT_DUMP | |
463 | 280 name = (char *) alloca (XSTRING (filename)->size + 14); |
604 | 281 strcpy (name, "../etc/"); |
297 | 282 #else /* CANNOT_DUMP */ |
6030
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
283 CHECK_STRING (Vdoc_directory, 0); |
297 | 284 name = (char *) alloca (XSTRING (filename)->size + |
6030
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
285 XSTRING (Vdoc_directory)->size + 1); |
8b3f54fb451f
(get_doc_string, Snarf_documentation): Use new variable doc_directory.
Karl Heuer <kwzh@gnu.org>
parents:
5784
diff
changeset
|
286 strcpy (name, XSTRING (Vdoc_directory)->data); |
297 | 287 #endif /* CANNOT_DUMP */ |
288 strcat (name, XSTRING (filename)->data); /*** Add this line ***/ | |
289 #ifdef VMS | |
290 #ifndef VMS4_4 | |
291 /* For VMS versions with limited file name syntax, | |
292 convert the name to something VMS will allow. */ | |
293 p = name; | |
294 while (*p) | |
295 { | |
296 if (*p == '-') | |
297 *p = '_'; | |
298 p++; | |
299 } | |
300 #endif /* not VMS4_4 */ | |
301 #ifdef VMS4_4 | |
302 strcpy (name, sys_translate_unix (name)); | |
303 #endif /* VMS4_4 */ | |
304 #endif /* VMS */ | |
305 | |
306 fd = open (name, O_RDONLY, 0); | |
307 if (fd < 0) | |
308 report_file_error ("Opening doc string file", | |
309 Fcons (build_string (name), Qnil)); | |
310 Vdoc_file_name = filename; | |
311 filled = 0; | |
312 pos = 0; | |
313 while (1) | |
314 { | |
315 if (filled < 512) | |
316 filled += read (fd, &buf[filled], sizeof buf - 1 - filled); | |
317 if (!filled) | |
318 break; | |
319 | |
320 buf[filled] = 0; | |
321 p = buf; | |
322 end = buf + (filled < 512 ? filled : filled - 128); | |
323 while (p != end && *p != '\037') p++; | |
324 /* p points to ^_Ffunctionname\n or ^_Vvarname\n. */ | |
325 if (p != end) | |
326 { | |
327 end = index (p, '\n'); | |
328 sym = oblookup (Vobarray, p + 2, end - p - 2); | |
329 if (XTYPE (sym) == Lisp_Symbol) | |
330 { | |
331 /* Attach a docstring to a variable? */ | |
332 if (p[1] == 'V') | |
333 { | |
334 /* Install file-position as variable-documentation property | |
335 and make it negative for a user-variable | |
336 (doc starts with a `*'). */ | |
337 Fput (sym, Qvariable_documentation, | |
338 make_number ((pos + end + 1 - buf) | |
339 * (end[1] == '*' ? -1 : 1))); | |
340 } | |
341 | |
1651
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
342 /* Attach a docstring to a function? */ |
297 | 343 else if (p[1] == 'F') |
1651
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
344 store_function_docstring (sym, pos + end + 1 - buf); |
297 | 345 |
1651
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
346 else |
ef09501a0a9b
* doc.c (store_function_docstring): New function, made from part
Jim Blandy <jimb@redhat.com>
parents:
1511
diff
changeset
|
347 error ("DOC file invalid at position %d", pos); |
297 | 348 } |
349 } | |
350 pos += end - buf; | |
351 filled -= end - buf; | |
352 bcopy (end, buf, filled); | |
353 } | |
354 close (fd); | |
355 return Qnil; | |
356 } | |
357 | |
358 DEFUN ("substitute-command-keys", Fsubstitute_command_keys, | |
359 Ssubstitute_command_keys, 1, 1, 0, | |
360 "Substitute key descriptions for command names in STRING.\n\ | |
361 Return a new string which is STRING with substrings of the form \\=\\[COMMAND]\n\ | |
362 replaced by either: a keystroke sequence that will invoke COMMAND,\n\ | |
363 or \"M-x COMMAND\" if COMMAND is not on any keys.\n\ | |
364 Substrings of the form \\=\\{MAPVAR} are replaced by summaries\n\ | |
365 \(made by describe-bindings) of the value of MAPVAR, taken as a keymap.\n\ | |
366 Substrings of the form \\=\\<MAPVAR> specify to use the value of MAPVAR\n\ | |
367 as the keymap for future \\=\\[COMMAND] substrings.\n\ | |
368 \\=\\= quotes the following character and is discarded;\n\ | |
369 thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ into the output.") | |
370 (str) | |
371 Lisp_Object str; | |
372 { | |
373 unsigned char *buf; | |
374 int changed = 0; | |
375 register unsigned char *strp; | |
376 register unsigned char *bufp; | |
377 int idx; | |
378 int bsize; | |
379 unsigned char *new; | |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
380 Lisp_Object tem; |
297 | 381 Lisp_Object keymap; |
382 unsigned char *start; | |
383 int length; | |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
384 Lisp_Object name; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
385 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
297 | 386 |
485 | 387 if (NILP (str)) |
297 | 388 return Qnil; |
389 | |
390 CHECK_STRING (str, 0); | |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
391 tem = Qnil; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
392 keymap = Qnil; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
393 name = Qnil; |
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
394 GCPRO4 (str, tem, keymap, name); |
297 | 395 |
5784
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
396 /* KEYMAP is either nil (which means search all the active keymaps) |
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
397 or a specified local map (which means search just that and the |
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
398 global map). If non-nil, it might come from Voverriding_local_map, |
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
399 or from a \\<mapname> construct in STR itself.. */ |
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
400 keymap = Voverriding_local_map; |
297 | 401 |
402 bsize = XSTRING (str)->size; | |
403 bufp = buf = (unsigned char *) xmalloc (bsize); | |
404 | |
405 strp = (unsigned char *) XSTRING (str)->data; | |
406 while (strp < (unsigned char *) XSTRING (str)->data + XSTRING (str)->size) | |
407 { | |
408 if (strp[0] == '\\' && strp[1] == '=') | |
409 { | |
410 /* \= quotes the next character; | |
411 thus, to put in \[ without its special meaning, use \=\[. */ | |
412 changed = 1; | |
413 *bufp++ = strp[2]; | |
414 strp += 3; | |
415 } | |
416 else if (strp[0] == '\\' && strp[1] == '[') | |
417 { | |
5248
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
418 Lisp_Object firstkey; |
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
419 |
297 | 420 changed = 1; |
421 strp += 2; /* skip \[ */ | |
422 start = strp; | |
423 | |
424 while ((strp - (unsigned char *) XSTRING (str)->data | |
425 < XSTRING (str)->size) | |
426 && *strp != ']') | |
427 strp++; | |
428 length = strp - start; | |
429 strp++; /* skip ] */ | |
430 | |
431 /* Save STRP in IDX. */ | |
432 idx = strp - (unsigned char *) XSTRING (str)->data; | |
433 tem = Fintern (make_string (start, length), Qnil); | |
5784
9c3be8e0d2ef
(Fsubstitute_command_keys): Pass keymap as that arg
Richard M. Stallman <rms@gnu.org>
parents:
5550
diff
changeset
|
434 tem = Fwhere_is_internal (tem, keymap, Qt, Qnil); |
297 | 435 |
5248
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
436 /* Disregard menu bar bindings; it is positively annoying to |
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
437 mention them when there's no menu bar, and it isn't terribly |
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
438 useful even when there is a menu bar. */ |
5377
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
439 if (!NILP (tem)) |
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
440 { |
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
441 firstkey = Faref (tem, make_number (0)); |
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
442 if (EQ (firstkey, Qmenu_bar)) |
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
443 tem = Qnil; |
7a8463c07d8f
(Fsubstitute_command_keys): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5248
diff
changeset
|
444 } |
5248
27d6275810a7
(Fsubstitute_command_keys): Ignore menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
4716
diff
changeset
|
445 |
485 | 446 if (NILP (tem)) /* but not on any keys */ |
297 | 447 { |
448 new = (unsigned char *) xrealloc (buf, bsize += 4); | |
449 bufp += new - buf; | |
450 buf = new; | |
451 bcopy ("M-x ", bufp, 4); | |
452 bufp += 4; | |
453 goto subst; | |
454 } | |
455 else | |
456 { /* function is on a key */ | |
457 tem = Fkey_description (tem); | |
458 goto subst_string; | |
459 } | |
460 } | |
461 /* \{foo} is replaced with a summary of the keymap (symbol-value foo). | |
462 \<foo> just sets the keymap used for \[cmd]. */ | |
463 else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<')) | |
464 { | |
465 struct buffer *oldbuf; | |
466 | |
467 changed = 1; | |
468 strp += 2; /* skip \{ or \< */ | |
469 start = strp; | |
470 | |
471 while ((strp - (unsigned char *) XSTRING (str)->data | |
472 < XSTRING (str)->size) | |
473 && *strp != '}' && *strp != '>') | |
474 strp++; | |
475 length = strp - start; | |
476 strp++; /* skip } or > */ | |
477 | |
478 /* Save STRP in IDX. */ | |
479 idx = strp - (unsigned char *) XSTRING (str)->data; | |
480 | |
481 /* Get the value of the keymap in TEM, or nil if undefined. | |
482 Do this while still in the user's current buffer | |
483 in case it is a local variable. */ | |
484 name = Fintern (make_string (start, length), Qnil); | |
485 tem = Fboundp (name); | |
485 | 486 if (! NILP (tem)) |
297 | 487 { |
488 tem = Fsymbol_value (name); | |
485 | 489 if (! NILP (tem)) |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
490 tem = get_keymap_1 (tem, 0, 1); |
297 | 491 } |
492 | |
493 /* Now switch to a temp buffer. */ | |
494 oldbuf = current_buffer; | |
495 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer)); | |
496 | |
485 | 497 if (NILP (tem)) |
297 | 498 { |
499 name = Fsymbol_name (name); | |
500 insert_string ("\nUses keymap \""); | |
4716
4382ad05411e
(Fsubstitute_command_keys): Pass new arg to insert_from_string.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
501 insert_from_string (name, 0, XSTRING (name)->size, 1); |
297 | 502 insert_string ("\", which is not currently defined.\n"); |
503 if (start[-1] == '<') keymap = Qnil; | |
504 } | |
505 else if (start[-1] == '<') | |
506 keymap = tem; | |
507 else | |
5550
9e8bbed9a9b6
(Fsubstitute_command_keys): Pass new arg to describe_map_tree.
Richard M. Stallman <rms@gnu.org>
parents:
5377
diff
changeset
|
508 describe_map_tree (tem, 1, Qnil, Qnil, 0, 1); |
297 | 509 tem = Fbuffer_string (); |
510 Ferase_buffer (); | |
511 set_buffer_internal (oldbuf); | |
512 | |
513 subst_string: | |
514 start = XSTRING (tem)->data; | |
515 length = XSTRING (tem)->size; | |
516 subst: | |
517 new = (unsigned char *) xrealloc (buf, bsize += length); | |
518 bufp += new - buf; | |
519 buf = new; | |
520 bcopy (start, bufp, length); | |
521 bufp += length; | |
522 /* Check STR again in case gc relocated it. */ | |
523 strp = (unsigned char *) XSTRING (str)->data + idx; | |
524 } | |
525 else /* just copy other chars */ | |
526 *bufp++ = *strp++; | |
527 } | |
528 | |
529 if (changed) /* don't bother if nothing substituted */ | |
530 tem = make_string (buf, bufp - buf); | |
531 else | |
532 tem = str; | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
1651
diff
changeset
|
533 xfree (buf); |
1511
ff88f962a982
* doc.c: #include keyboard.h.
Jim Blandy <jimb@redhat.com>
parents:
1116
diff
changeset
|
534 RETURN_UNGCPRO (tem); |
297 | 535 } |
536 | |
537 syms_of_doc () | |
538 { | |
539 DEFVAR_LISP ("internal-doc-file-name", &Vdoc_file_name, | |
540 "Name of file containing documentation strings of built-in symbols."); | |
541 Vdoc_file_name = Qnil; | |
542 | |
543 defsubr (&Sdocumentation); | |
544 defsubr (&Sdocumentation_property); | |
545 defsubr (&Ssnarf_documentation); | |
546 defsubr (&Ssubstitute_command_keys); | |
547 } |