Show
Ignore:
Timestamp:
05/01/07 18:04:59 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs_22_BASE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/calc/calc.el

    r4196 r4204  
    55 
    66;; Author: David Gillespie <daveg@synaptics.com> 
    7 ;; Maintainer: Jay Belanger <belanger@truman.edu
     7;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com
    88;; Keywords: convenience, extensions 
    99;; Version: 2.1 
     
    402402  :type '(choice (string) (sexp))) 
    403403 
    404 (defvar calc-bug-address "belanger@truman.edu
     404(defvar calc-bug-address "jay.p.belanger@gmail.com
    405405  "Address of the maintainer of Calc, for use by `report-calc-bug'.") 
    406406 
     
    11491149(defvar calc-alg-map) ; Defined in calc-ext.el 
    11501150 
     1151(defun calc-version () 
     1152  "Return version of this version of Calc." 
     1153  (interactive) 
     1154  (message (concat "Calc version " calc-version))) 
     1155 
    11511156(defun calc-mode () 
    11521157  "Calculator major mode. 
     
    12591264  (when (= (buffer-size) 0) 
    12601265    (let ((buffer-read-only nil)) 
    1261       (insert (propertize (concat "Emacs Calculator v" calc-version 
    1262                                   " by Dave Gillespie\n") 
     1266      (insert (propertize (concat "Emacs Calculator Trail\n") 
    12631267                          'font-lock-face 'italic)))) 
    12641268  (run-mode-hooks 'calc-trail-mode-hook))