* ses.el (ses-rename-cell): Correct bug on mode-line update after cell renaming.

This commit is contained in:
Vincent Belaïche 2012-11-24 18:44:29 +01:00
parent bcd77a2ba0
commit ecfc364c8f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
* ses.el (ses-rename-cell): Correct bug on mode-line update after
cell renaming.
2012-11-24 Chong Yidong <cyd@gnu.org>
* woman.el (woman-default-faces, woman-monochrome-faces): Mark as

View file

@ -3313,7 +3313,7 @@ highlighted range in the spreadsheet."
(put-text-property pos end 'intangible new-name))
;; update mode line
(setq mode-line-process (list " cell "
(symbol-name sym)))
(symbol-name new-name)))
(force-mode-line-update)))
;;----------------------------------------------------------------------------