aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/calc/calc-help.el8
2 files changed, 14 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7ef89d4ce56..e8b769d33ab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12005-03-29 Jay Belanger <belanger@truman.edu>
2
3 * calc/calc.el: Update copyright date.
4 (calc-version): Increase to 2.1.
5 (calc-version-date): Remove.
6
7 * calc/calc-help.el: Update copyright date.
8 (calc-full-help): Remove reference to calc-version-date.
9 Update copyright date.
10
12005-03-29 Stefan Monnier <monnier@iro.umontreal.ca> 112005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
2 12
3 * vc.el (vc-do-command): Use a pipe for async processes, so password 13 * vc.el (vc-do-command): Use a pipe for async processes, so password
diff --git a/lisp/calc/calc-help.el b/lisp/calc/calc-help.el
index dc7f0b17c1d..27571191a5a 100644
--- a/lisp/calc/calc-help.el
+++ b/lisp/calc/calc-help.el
@@ -1,6 +1,6 @@
1;;; calc-help.el --- help display functions for Calc, 1;;; calc-help.el --- help display functions for Calc,
2 2
3;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2004 3;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2004, 2005
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: David Gillespie <daveg@synaptics.com> 6;; Author: David Gillespie <daveg@synaptics.com>
@@ -409,10 +409,10 @@ C-w Describe how there is no warranty for Calc."
409(defun calc-full-help () 409(defun calc-full-help ()
410 (interactive) 410 (interactive)
411 (with-output-to-temp-buffer "*Help*" 411 (with-output-to-temp-buffer "*Help*"
412 (princ (format "GNU Emacs Calculator version %s of %s.\n" 412 (princ (format "GNU Emacs Calculator version %s.\n"
413 calc-version calc-version-date)) 413 calc-version))
414 (princ " By Dave Gillespie, daveg@synaptics.com.\n") 414 (princ " By Dave Gillespie, daveg@synaptics.com.\n")
415 (princ " Copyright (C) 1990, 1993 Free Software Foundation, Inc.\n\n") 415 (princ " Copyright (C) 2005 Free Software Foundation, Inc.\n\n")
416 (princ "Type `h s' for a more detailed summary.\n") 416 (princ "Type `h s' for a more detailed summary.\n")
417 (princ "Or type `h i' to read the full Calc manual on-line.\n\n") 417 (princ "Or type `h i' to read the full Calc manual on-line.\n\n")
418 (princ "Basic keys:\n") 418 (princ "Basic keys:\n")