From: Juanma Barranquero Date: Mon, 1 Oct 2007 10:06:27 +0000 (+0000) Subject: (Fload): Fix typo in docstring. X-Git-Tag: emacs-pretest-22.1.90~711 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=06b8b8bb04c8971898a222025aa30aa3e7d1a630;p=emacs.git (Fload): Fix typo in docstring. --- diff --git a/src/ChangeLog b/src/ChangeLog index 0c79acd6b45..03aa59a29d4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-10-01 Juanma Barranquero + + * lread.c (Fload): Fix typo in docstring. + 2007-09-29 Juri Linkov * emacs.c (standard_args): Change priority of "--no-splash" diff --git a/src/lread.c b/src/lread.c index 858a936e1e3..49c22f45de1 100644 --- a/src/lread.c +++ b/src/lread.c @@ -643,7 +643,7 @@ DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0, -/* Value is non-zero if the file asswociated with file descriptor FD +/* Value is non-zero if the file associated with file descriptor FD is a compiled Lisp file that's safe to load. Only files compiled with Emacs are safe to load. Files compiled with XEmacs can lead to a crash in Fbyte_code because of an incompatible change in the @@ -739,7 +739,7 @@ DEFUN ("load", Fload, Sload, 1, 5, 0, doc: /* Execute a file of Lisp code named FILE. First try FILE with `.elc' appended, then try with `.el', then try FILE unmodified (the exact suffixes in the exact order are -determined by `load-suffixes'). Environment variable references in +determined by `load-suffixes'). Environment variable references in FILE are replaced with their values by calling `substitute-in-file-name'. This function searches the directories in `load-path'. @@ -910,7 +910,7 @@ Return t if the file exists and loads successfully. */) tmp)) : found) ; - /* Check fore the presence of old-style quotes and warn about them. */ + /* Check for the presence of old-style quotes and warn about them. */ specbind (Qold_style_backquotes, Qnil); record_unwind_protect (load_warn_old_style_backquotes, file); @@ -3867,7 +3867,7 @@ init_lread () Vload_path = Fcons (tem, Vload_path); } - /* Add site-list under the installation dir, if it exists. */ + /* Add site-lisp under the installation dir, if it exists. */ tem = Fexpand_file_name (build_string ("site-lisp"), Vinstallation_directory); tem1 = Ffile_exists_p (tem); @@ -3927,7 +3927,7 @@ init_lread () /* NORMAL refers to the lisp dir in the source directory. */ /* We used to add ../lisp at the front here, but that caused trouble because it was copied from dump_path - into Vload_path, aboe, when Vinstallation_directory was non-nil. + into Vload_path, above, when Vinstallation_directory was non-nil. It should be unnecessary. */ Vload_path = decode_env_path (0, normal); dump_path = Vload_path; @@ -3986,7 +3986,7 @@ init_lread () } /* Print a warning, using format string FORMAT, that directory DIRNAME - does not exist. Print it on stderr and put it in *Message*. */ + does not exist. Print it on stderr and put it in *Messages*. */ void dir_warning (format, dirname)