aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/man.el4
2 files changed, 18 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3dbf8d5e029..a3203789ccb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,17 @@
12002-12-21 Richard M. Stallman <rms@gnu.org>
2
3 * man.el (Man-getpage-in-background): Put GROFF_NO_SGR in env.
4
5 * ls-lisp.el (original-insert-directory): Make this a variable,
6 don't set its function definition.
7 (insert-directory): Use funcall to call that function.
8
9 * bindings.el (help-echo): Change tooltip string.
10
11 * chistory.el (command-history-map): Move definition up.
12
13 * faces.el (help-xref-stack): Add defvar to avoid warning.
14
12002-12-21 Andreas Schwab <schwab@suse.de> 152002-12-21 Andreas Schwab <schwab@suse.de>
2 16
3 * dired.el (dired-insert-directory): Preserve text properties 17 * dired.el (dired-insert-directory): Preserve text properties
@@ -4963,12 +4977,11 @@
4963 * dired.el: Hide disabling of dired-find-alternate-file behind 4977 * dired.el: Hide disabling of dired-find-alternate-file behind
4964 autoload-cookie. 4978 autoload-cookie.
4965 4979
49662002-07-31 Juanma Barranquero <lektu@terra.es> 49802002-07-31 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
4967 4981
4968 * makefile.w32-in: Revert some changes from 2002-07-23 because they 4982 * makefile.w32-in: Revert some changes from 2002-07-23 because they
4969 don't work on MSVC/nmake builds. 4983 don't work on MSVC/nmake builds.
4970 (update-subdirs-CMD): Generate the right list of subdirectories. 4984 (update-subdirs-CMD): Generate the right list of subdirectories.
4971 From Tak Ota <Takaaki.Ota@am.sony.com>.
4972 4985
49732002-07-30 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 49862002-07-30 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4974 4987
diff --git a/lisp/man.el b/lisp/man.el
index c5a5acd1282..855565242e2 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -618,7 +618,9 @@ all sections related to a subject, put something appropriate into the
618 (start-process manual-program buffer "sh" "-c" 618 (start-process manual-program buffer "sh" "-c"
619 (format (Man-build-man-command) man-args)) 619 (format (Man-build-man-command) man-args))
620 'Man-bgproc-sentinel) 620 'Man-bgproc-sentinel)
621 (progn 621 (let ((process-environment
622 (cons "GROFF_NO_SGR=1" process-environment)))
623
622 (let ((exit-status 624 (let ((exit-status
623 (call-process shell-file-name nil (list buffer nil) nil "-c" 625 (call-process shell-file-name nil (list buffer nil) nil "-c"
624 (format (Man-build-man-command) man-args))) 626 (format (Man-build-man-command) man-args)))