mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-31 17:30:54 -08:00
Declared Vdata_directory.
This commit is contained in:
parent
012c6fcb48
commit
e6d38bed7e
1 changed files with 6 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
#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 @@ syms_of_doc ()
|
|||
"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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue