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 | |
| 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.
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/callproc.c | 6 |
2 files changed, 12 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 73e1a1c7bde..c0bae63b766 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2007-02-17 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * callproc.c (syms_of_callproc) <doc-directory>: | ||
| 4 | <configure-info-directory>: | ||
| 5 | (Fgetenv_internal): Fix typos in docstrings. | ||
| 6 | |||
| 7 | * doc.c (Fsubstitute_command_keys): Fix typo in docstring. | ||
| 8 | |||
| 1 | 2007-02-16 Andreas Schwab <schwab@suse.de> | 9 | 2007-02-16 Andreas Schwab <schwab@suse.de> |
| 2 | 10 | ||
| 3 | * frame.c (Fmodify_frame_parameters): Return a value. | 11 | * frame.c (Fmodify_frame_parameters): Return a value. |
| @@ -530,7 +538,7 @@ | |||
| 530 | 538 | ||
| 531 | 2006-12-19 Juanma Barranquero <lekktu@gmail.com> | 539 | 2006-12-19 Juanma Barranquero <lekktu@gmail.com> |
| 532 | 540 | ||
| 533 | * buffer.c (syms_of_buffer) <buffer-display-table> | 541 | * buffer.c (syms_of_buffer) <buffer-display-table>: |
| 534 | <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes. | 542 | <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes. |
| 535 | 543 | ||
| 536 | 2006-12-17 Richard Stallman <rms@gnu.org> | 544 | 2006-12-17 Richard Stallman <rms@gnu.org> |
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 | ||