aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-02-17 02:02:10 +0000
committerJuanma Barranquero2007-02-17 02:02:10 +0000
commitebf24b595f23a5ddeff054d1791abe0099be0815 (patch)
tree50c92fc6f9af484702f2a173e1197692004cbc51
parent2610bf68ee74744f8989ff6796958f847a5b5bb6 (diff)
downloademacs-ebf24b595f23a5ddeff054d1791abe0099be0815.tar.gz
emacs-ebf24b595f23a5ddeff054d1791abe0099be0815.zip
(syms_of_callproc) <doc-directory, configure-info-directory>:
(Fgetenv_internal): Fix typos in docstrings.
-rw-r--r--src/ChangeLog10
-rw-r--r--src/callproc.c6
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 @@
12007-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
12007-02-16 Andreas Schwab <schwab@suse.de> 92007-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
5312006-12-19 Juanma Barranquero <lekktu@gmail.com> 5392006-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
5362006-12-17 Richard Stallman <rms@gnu.org> 5442006-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)
1482DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0, 1482DEFUN ("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.
1484VAR should be a string. Value is nil if VAR is undefined in the environment. 1484VAR should be a string. Value is nil if VAR is undefined in the environment.
1485This function consults the variable ``process-environment'' for its value. */) 1485This 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.
1695This is usually the same as data-directory. */); 1695This 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.
1699This is the name of the directory in which the build procedure installed 1699This is the name of the directory in which the build procedure installed
1700Emacs's info files; the default value for Info-default-directory-list 1700Emacs's info files; the default value for `Info-default-directory-list'
1701includes this. */); 1701includes this. */);
1702 Vconfigure_info_directory = build_string (PATH_INFO); 1702 Vconfigure_info_directory = build_string (PATH_INFO);
1703 1703