]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_lread): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 6 Nov 2006 23:25:55 +0000 (23:25 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 6 Nov 2006 23:25:55 +0000 (23:25 +0000)
src/lread.c

index 8f82c13be6ab424e52f23a1f80450b19e980cbba..6ce7c6a1aef1be0d8583b6a0b26de2cddcdd8630 100644 (file)
@@ -132,7 +132,7 @@ static int load_force_doc_strings;
 /* Nonzero means read should convert strings to unibyte.  */
 static int load_convert_to_unibyte;
 
-/* Function to use for loading an Emacs lisp source file (not
+/* Function to use for loading an Emacs Lisp source file (not
    compiled) instead of readevalloop.  */
 Lisp_Object Vload_source_file_function;
 
@@ -4117,7 +4117,7 @@ The default is nil, which means use the function `read'.  */);
   Vload_read_function = Qnil;
 
   DEFVAR_LISP ("load-source-file-function", &Vload_source_file_function,
-              doc: /* Function called in `load' for loading an Emacs lisp source file.
+              doc: /* Function called in `load' for loading an Emacs Lisp source file.
 This function is for doing code conversion before reading the source file.
 If nil, loading is done without any code conversion.
 Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where