aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorJim Blandy1992-08-12 13:41:17 +0000
committerJim Blandy1992-08-12 13:41:17 +0000
commit9fbfa962b95d25431412833795c21cf27ef69c95 (patch)
tree4ece90c79fe6636a56b16599bb40b539659229c6 /src/doc.c
parentb6a65ac2ae273be2d0c672025354d285fd559e80 (diff)
downloademacs-9fbfa962b95d25431412833795c21cf27ef69c95.tar.gz
emacs-9fbfa962b95d25431412833795c21cf27ef69c95.zip
* doc.c (Vdata_directory): Removed; this is declared in callproc.c.
(syms_of_doc): Initialization removed.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/doc.c b/src/doc.c
index 0c0e62f4597..6dceb587fcb 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -34,7 +34,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
34#include "lisp.h" 34#include "lisp.h"
35#include "buffer.h" 35#include "buffer.h"
36 36
37Lisp_Object Vdoc_file_name, Vdata_directory; 37Lisp_Object Vdoc_file_name;
38 38
39Lisp_Object 39Lisp_Object
40get_doc_string (filepos) 40get_doc_string (filepos)
@@ -493,11 +493,6 @@ syms_of_doc ()
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\
498intended for Emacs to use.");
499 Vdata_directory = Qnil;
500
501 defsubr (&Sdocumentation); 496 defsubr (&Sdocumentation);
502 defsubr (&Sdocumentation_property); 497 defsubr (&Sdocumentation_property);
503 defsubr (&Ssnarf_documentation); 498 defsubr (&Ssnarf_documentation);