comparison lisp/ses.el @ 90228:fa0da9b57058

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 542-553) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 116-121) - Merge from emacs--cvs-trunk--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Mon, 19 Sep 2005 10:20:33 +0000
parents 2d92f5c9d6ae 4d1085b02d64
children ee12d75eb214
comparison
equal deleted inserted replaced
90227:10fe5fadaf89 90228:fa0da9b57058
1610 (setq ses--curcell t))) 1610 (setq ses--curcell t)))
1611 ;;Prevent errors in this post-command-hook from silently erasing the hook! 1611 ;;Prevent errors in this post-command-hook from silently erasing the hook!
1612 (error 1612 (error
1613 (unless executing-kbd-macro 1613 (unless executing-kbd-macro
1614 (ding)) 1614 (ding))
1615 (message (error-message-string err)))) 1615 (message "%s" (error-message-string err))))
1616 nil) ;Make coverage-tester happy 1616 nil) ;Make coverage-tester happy
1617 1617
1618 (defun ses-create-header-string () 1618 (defun ses-create-header-string ()
1619 "Set up `ses--header-string' as the buffer's header line. 1619 "Set up `ses--header-string' as the buffer's header line.
1620 Based on the current set of columns and `window-hscroll' position." 1620 Based on the current set of columns and `window-hscroll' position."
1737 (condition-case hold 1737 (condition-case hold
1738 (ses-update-cells x t) 1738 (ses-update-cells x t)
1739 (error (setq sig hold)))) 1739 (error (setq sig hold))))
1740 (cond 1740 (cond
1741 (sig 1741 (sig
1742 (message (error-message-string sig))) 1742 (message "%s" (error-message-string sig)))
1743 ((consp ses--curcell) 1743 ((consp ses--curcell)
1744 (message " ")) 1744 (message " "))
1745 (t 1745 (t
1746 (princ (symbol-value ses--curcell)))))) 1746 (princ (symbol-value ses--curcell))))))
1747 1747