diff src/fileio.c @ 996:25e260cb7994

[xemacs-hg @ 2002-09-10 15:27:02 by james] Enable unloading of dynamic modules. Create the first two internal XEmacs modules: LDAP and postgreSQL. Update the sample directory to contain a sample internal XEmacs module and a sample external XEmacs module. Improve support for autoloading modules. Make internal module code compile into the XEmacs binary if XEmacs is configured without module support. Make the internal module directories self-contained so that they can be distributed separately from XEmacs.
author james
date Tue, 10 Sep 2002 15:27:39 +0000
parents 5df795348f45
children 184461bc8de4
line wrap: on
line diff
--- a/src/fileio.c	Mon Sep 09 21:53:43 2002 +0000
+++ b/src/fileio.c	Tue Sep 10 15:27:39 2002 +0000
@@ -218,6 +218,7 @@
 Lisp_Object Qdirectory_file_name;
 Lisp_Object Qfile_name_directory;
 Lisp_Object Qfile_name_nondirectory;
+Lisp_Object Qfile_name_sans_extension;
 Lisp_Object Qunhandled_file_name_directory;
 Lisp_Object Qfile_name_as_directory;
 Lisp_Object Qcopy_file;
@@ -4208,6 +4209,7 @@
   DEFSYMBOL (Qdirectory_file_name);
   DEFSYMBOL (Qfile_name_directory);
   DEFSYMBOL (Qfile_name_nondirectory);
+  DEFSYMBOL (Qfile_name_sans_extension);
   DEFSYMBOL (Qunhandled_file_name_directory);
   DEFSYMBOL (Qfile_name_as_directory);
   DEFSYMBOL (Qcopy_file);