comparison src/doc.c @ 943:e95ecc378efa

Declared Vdata_directory.
author Joseph Arceneaux <jla@gnu.org>
date Thu, 06 Aug 1992 03:25:23 +0000
parents 529171c8b71c
children 8d2cbfd93066
comparison
equal deleted inserted replaced
942:c519b70eb50b 943:e95ecc378efa
32 #endif 32 #endif
33 33
34 #include "lisp.h" 34 #include "lisp.h"
35 #include "buffer.h" 35 #include "buffer.h"
36 36
37 Lisp_Object Vdoc_file_name; 37 Lisp_Object Vdoc_file_name, Vdata_directory;
38 38
39 Lisp_Object 39 Lisp_Object
40 get_doc_string (filepos) 40 get_doc_string (filepos)
41 long filepos; 41 long filepos;
42 { 42 {
491 { 491 {
492 DEFVAR_LISP ("internal-doc-file-name", &Vdoc_file_name, 492 DEFVAR_LISP ("internal-doc-file-name", &Vdoc_file_name,
493 "Name of file containing documentation strings of built-in symbols."); 493 "Name of file containing documentation strings of built-in symbols.");
494 Vdoc_file_name = Qnil; 494 Vdoc_file_name = Qnil;
495 495
496 DEFVAR_LISP ("data-directory", &Vdata_directory,
497 "Directory of architecture-independent files that come with GNU Emacs,\n\
498 intended for Emacs to use.");
499 Vdata_directory = Qnil;
500
496 defsubr (&Sdocumentation); 501 defsubr (&Sdocumentation);
497 defsubr (&Sdocumentation_property); 502 defsubr (&Sdocumentation_property);
498 defsubr (&Ssnarf_documentation); 503 defsubr (&Ssnarf_documentation);
499 defsubr (&Ssubstitute_command_keys); 504 defsubr (&Ssubstitute_command_keys);
500 } 505 }