Mercurial > emacs
changeset 943:e95ecc378efa
Declared Vdata_directory.
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Thu, 06 Aug 1992 03:25:23 +0000 |
parents | c519b70eb50b |
children | 6bebb86e63c2 |
files | src/doc.c |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);