summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-06-07 15:38:54 +0000
committerGerd Moellmann <gerd@gnu.org>2000-06-07 15:38:54 +0000
commit45f485a60165a0a95134d8d58df6ec5ed407db47 (patch)
tree57ce51b0607664839edc30ca7822ec695a5d940b
parent14c122ec9b9552e51333448787261d8cabc32653 (diff)
downloademacs-45f485a60165a0a95134d8d58df6ec5ed407db47.tar.gz
*** empty log message ***
-rw-r--r--etc/ChangeLog19
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog48
-rw-r--r--lisp/apropos.el5
4 files changed, 74 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index ba05a07e7e1..4e273490ef8 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,22 @@
+2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
+
+ * ps-prin0.ps: Insert a version number comment (5.2.2).
+ Indentation fix.
+
+ * ps-prin1.ps: Insert a version number comment (5.2.2). Can
+ select page size with/without giving an error if PostScript
+ printer doesn't have this kind of page size. Zebra Stripe
+ continues or restarts on next page. Indentation fix.
+ (BeginSheet): If necessary, rescale n-up to fit on the sheet of
+ paper.
+ (BeginDoc, doColumnZebra, HeaderText): Code fix.
+ (SetPageSize): New proc.
+
+ * ps-prin2.ps: Insert a version number comment (5.2.2).
+
+ * ps-prin3.ps: Insert a version number comment (5.2.2).
+ Indentation fix.
+
2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
* ps-prin1.ps: PostScript code compatibility with other utilities
diff --git a/etc/NEWS b/etc/NEWS
index 92dee068663..08ec38947df 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1212,6 +1212,9 @@ satisfying one of a list of specifications.
** The obsolete variables before-change-function and
after-change-function are no longer acted upon and have been removed.
+
+** The function `apropos-mode' runs the hook `apropos-mode-hook'.
+
* Lisp changes in Emacs 21.1 (see following page for display-related features)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 61a50b188c7..ca98ed8d2e4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,51 @@
+2000-06-07 Gerd Moellmann <gerd@gnu.org>
+
+ * align.el: Update from author.
+
+2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
+
+ * apropos.el (apropos-mode-hook): New user variable.
+ (apropos-mode): Run apropos-mode-hook.
+
+2000-06-07 David Ponce <david@dponce.com>
+
+ * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
+ commands. Require `wid-edit' at run-time.
+
+2000-06-07 David Ponce <david@dponce.com>
+
+ * recentf.el: Added some "Commentary".
+ (recentf-open-more-files, recentf-edit-list): Minor changes to
+ move the point at the top of the file list. This behaviour is
+ consistent with the menu one when the list contains a lot of
+ files.
+ (recentf-cleanup): Now displays the number of items removed from
+ the list.
+ (recentf-relative-filter) New menu filter to show filenames
+ relative to `default-directory'.
+
+2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
+
+ * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
+ with/without giving an error if PostScript printer doesn't have this
+ kind of page size. Zebra Stripe continues or restarts on next page.
+ Manual/automatic paper feeding. Switch or not the header.
+ (ps-print-version): New version number (5.2.2).
+ (ps-windows-system): Include emx as a Windows system.
+ (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
+ (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
+ (ps-background-text): Code fix.
+ (ps-error-handler-message, ps-user-defined-prologue)
+ (ps-print-prologue-header, ps-printer-name)
+ (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
+ (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
+ (ps-use-face-background): Customization fix.
+ (ps-n-up-database): Data fix.
+ (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
+ (ps-switch-header): New vars.
+ (ps-xemacs-color-name, ps-face-foreground-name)
+ (ps-face-background-name, ps-boolean-constant): New funs.
+
2000-06-07 Dave Love <fx@gnu.org>
* allout.el: New version from Manheimer.
diff --git a/lisp/apropos.el b/lisp/apropos.el
index f78b3794db7..5e8d4da97f2 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -112,6 +112,8 @@ for the regexp; the part that matches gets displayed in this font."
map)
"Keymap used in Apropos mode.")
+(defvar apropos-mode-hook nil
+ "*Hook run when mode is turned on.")
(defvar apropos-regexp nil
"Regexp used in current apropos run.")
@@ -134,7 +136,8 @@ for the regexp; the part that matches gets displayed in this font."
(kill-all-local-variables)
(use-local-map apropos-mode-map)
(setq major-mode 'apropos-mode
- mode-name "Apropos"))
+ mode-name "Apropos")
+ (run-hooks 'apropos-mode-hook))
;;;###autoload
(defun apropos-variable (regexp &optional do-all)