diff options
| author | Juanma Barranquero | 2007-02-17 02:02:10 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-02-17 02:02:10 +0000 |
| commit | ebf24b595f23a5ddeff054d1791abe0099be0815 (patch) | |
| tree | 50c92fc6f9af484702f2a173e1197692004cbc51 /src/callproc.c | |
| parent | 2610bf68ee74744f8989ff6796958f847a5b5bb6 (diff) | |
| download | emacs-ebf24b595f23a5ddeff054d1791abe0099be0815.tar.gz emacs-ebf24b595f23a5ddeff054d1791abe0099be0815.zip | |
(syms_of_callproc) <doc-directory, configure-info-directory>:
(Fgetenv_internal): Fix typos in docstrings.
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/callproc.c b/src/callproc.c index f9b71db7718..90e5b11a9a2 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1482,7 +1482,7 @@ getenv_internal (var, varlen, value, valuelen) | |||
| 1482 | DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0, | 1482 | DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0, |
| 1483 | doc: /* Return the value of environment variable VAR, as a string. | 1483 | doc: /* Return the value of environment variable VAR, as a string. |
| 1484 | VAR should be a string. Value is nil if VAR is undefined in the environment. | 1484 | VAR should be a string. Value is nil if VAR is undefined in the environment. |
| 1485 | This function consults the variable ``process-environment'' for its value. */) | 1485 | This function consults the variable `process-environment' for its value. */) |
| 1486 | (var) | 1486 | (var) |
| 1487 | Lisp_Object var; | 1487 | Lisp_Object var; |
| 1488 | { | 1488 | { |
| @@ -1692,12 +1692,12 @@ These are files intended for Emacs to use while it runs. */); | |||
| 1692 | 1692 | ||
| 1693 | DEFVAR_LISP ("doc-directory", &Vdoc_directory, | 1693 | DEFVAR_LISP ("doc-directory", &Vdoc_directory, |
| 1694 | doc: /* Directory containing the DOC file that comes with GNU Emacs. | 1694 | doc: /* Directory containing the DOC file that comes with GNU Emacs. |
| 1695 | This is usually the same as data-directory. */); | 1695 | This is usually the same as `data-directory'. */); |
| 1696 | 1696 | ||
| 1697 | DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory, | 1697 | DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory, |
| 1698 | doc: /* For internal use by the build procedure only. | 1698 | doc: /* For internal use by the build procedure only. |
| 1699 | This is the name of the directory in which the build procedure installed | 1699 | This is the name of the directory in which the build procedure installed |
| 1700 | Emacs's info files; the default value for Info-default-directory-list | 1700 | Emacs's info files; the default value for `Info-default-directory-list' |
| 1701 | includes this. */); | 1701 | includes this. */); |
| 1702 | Vconfigure_info_directory = build_string (PATH_INFO); | 1702 | Vconfigure_info_directory = build_string (PATH_INFO); |
| 1703 | 1703 | ||