]> git.eshelyaron.com Git - emacs.git/commitdiff
* ses.el (ses-rename-cell): Correct bug on mode-line update after cell renaming.
authorVincent Belaïche <vincentb1@users.sourceforge.net>
Sat, 24 Nov 2012 17:44:29 +0000 (18:44 +0100)
committerVincent Belaïche <vincentb1@users.sourceforge.net>
Sat, 24 Nov 2012 17:44:29 +0000 (18:44 +0100)
lisp/ChangeLog
lisp/ses.el

index 73db20178addbf6dd942750662ba5af182e68f56..a15957c871116fb535a73b0470387492db1390e0 100644 (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
index 27b906d22e3d5075fd3e7d641ae9739ed7acec0e..a0b69232e19012f61a50bca3f3c638ea6db9f0c5 100644 (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)))
 
 ;;----------------------------------------------------------------------------