From bf29d4c1c64c6184ecf090c2c58ca9d6ad9550d0 Mon Sep 17 00:00:00 2001 From: Markus Rost Date: Sat, 27 Jul 2002 19:50:34 +0000 Subject: [PATCH] Update copyright year. (ps-begin-cut-regexp, ps-end-cut-regexp): Fix type. --- lisp/ChangeLog | 5 +++++ lisp/ps-print.el | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d12e77242e..9df45c77ea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-07-27 Markus Rost + + * ps-print.el: Update copyright year. + (ps-begin-cut-regexp, ps-end-cut-regexp): Fix type. + 2002-07-26 Kai Gro,b_(Bjohann * eshell/eshell.el (eshell): Numeric prefix arg means to switch diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 5873bc7be3..f474453d75 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -1,6 +1,6 @@ ;;; ps-print.el --- print text from the buffer as PostScript -;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 ;; Free Software Foundation, Inc. ;; Author: Jim Thompson (was ) @@ -3201,7 +3201,8 @@ manual for more information. Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together what actually gets printed. Both variables may be set to nil in which case no cutting occurs." - :type 'regexp + :type '(choice (const :tag "No Delimiter" nil) + (regexp :tag "Delimiter Regexp")) :version "21.1" :group 'ps-print-miscellany) @@ -3209,7 +3210,8 @@ cutting occurs." "*Specify regexp which is end of the region to cut out when printing. See `ps-begin-cut-regexp' for more information." - :type 'regexp + :type '(choice (const :tag "No Delimiter" nil) + (regexp :tag "Delimiter Regexp")) :version "21.1" :group 'ps-print-miscellany) -- 2.20.1