# HG changeset patch # User Joseph Arceneaux # Date 713071523 0 # Node ID e95ecc378efae70aa6bfa429da2a47a5cb55b8df # Parent c519b70eb50b527724de7a3b4529e38f27fb3b8b Declared Vdata_directory. diff -r c519b70eb50b -r e95ecc378efa src/doc.c --- a/src/doc.c Thu Aug 06 03:24:07 1992 +0000 +++ b/src/doc.c Thu Aug 06 03:25:23 1992 +0000 @@ -34,7 +34,7 @@ #include "lisp.h" #include "buffer.h" -Lisp_Object Vdoc_file_name; +Lisp_Object Vdoc_file_name, Vdata_directory; Lisp_Object get_doc_string (filepos) @@ -493,6 +493,11 @@ "Name of file containing documentation strings of built-in symbols."); Vdoc_file_name = Qnil; + DEFVAR_LISP ("data-directory", &Vdata_directory, + "Directory of architecture-independent files that come with GNU Emacs,\n\ +intended for Emacs to use."); + Vdata_directory = Qnil; + defsubr (&Sdocumentation); defsubr (&Sdocumentation_property); defsubr (&Ssnarf_documentation);