]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_callproc) <doc-directory, configure-info-directory>:
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 17 Feb 2007 02:02:10 +0000 (02:02 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 17 Feb 2007 02:02:10 +0000 (02:02 +0000)
(Fgetenv_internal): Fix typos in docstrings.

src/ChangeLog
src/callproc.c

index 73e1a1c7bde226001c4e39e4132639ab5292a783..c0bae63b766fc1bdacc8e15fca32071de223ddc1 100644 (file)
@@ -1,3 +1,11 @@
+2007-02-17  Juanma Barranquero  <lekktu@gmail.com>
+
+       * callproc.c (syms_of_callproc) <doc-directory>:
+       <configure-info-directory>:
+       (Fgetenv_internal): Fix typos in docstrings.
+
+       * doc.c (Fsubstitute_command_keys): Fix typo in docstring.
+
 2007-02-16  Andreas Schwab  <schwab@suse.de>
 
        * frame.c (Fmodify_frame_parameters): Return a value.
 
 2006-12-19  Juanma Barranquero  <lekktu@gmail.com>
 
-       * buffer.c (syms_of_buffer) <buffer-display-table>
+       * buffer.c (syms_of_buffer) <buffer-display-table>:
        <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes.
 
 2006-12-17  Richard Stallman  <rms@gnu.org>
index f9b71db771853ec30d35177eb76fb12ebacff260..90e5b11a9a2efafd0e536495a5c5dc63d1afd9e9 100644 (file)
@@ -1482,7 +1482,7 @@ getenv_internal (var, varlen, value, valuelen)
 DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0,
        doc: /* Return the value of environment variable VAR, as a string.
 VAR should be a string.  Value is nil if VAR is undefined in the environment.
-This function consults the variable ``process-environment'' for its value.  */)
+This function consults the variable `process-environment' for its value.  */)
      (var)
      Lisp_Object var;
 {
@@ -1692,12 +1692,12 @@ These are files intended for Emacs to use while it runs.  */);
 
   DEFVAR_LISP ("doc-directory", &Vdoc_directory,
               doc: /* Directory containing the DOC file that comes with GNU Emacs.
-This is usually the same as data-directory.  */);
+This is usually the same as `data-directory'.  */);
 
   DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
               doc: /* For internal use by the build procedure only.
 This is the name of the directory in which the build procedure installed
-Emacs's info files; the default value for Info-default-directory-list
+Emacs's info files; the default value for `Info-default-directory-list'
 includes this.  */);
   Vconfigure_info_directory = build_string (PATH_INFO);