]> git.eshelyaron.com Git - emacs.git/commitdiff
calendar-set-mode-line fix (tiny change)
authorAdam Spiers <emacs@adamspiers.org>
Tue, 6 Mar 2012 02:18:29 +0000 (21:18 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 6 Mar 2012 02:18:29 +0000 (21:18 -0500)
* lisp/calendar/calendar.el (calendar-set-mode-line):
`getenv' returns a string.

Fixes: debbugs:10951
lisp/ChangeLog
lisp/calendar/calendar.el

index 394e082ecc89589f78ee1751b48e2b1407beda36..7bf2ba1bcc2f31ef3c4a06c8c3328571cff6ef9c 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
+
+       * calendar/calendar.el (calendar-set-mode-line):
+       `getenv' returns a string.  (Bug#10951)
+
 2012-03-05  Leo Liu  <sdl.web@gmail.com>
 
        * simple.el (backward-delete-char-untabify): Constrain point to
index 24c284350a32ce4a8e92d91baada1f975e4fad03..0c351c6072f94bfc4059d1094d8e501d6acd24c4 100644 (file)
@@ -2602,7 +2602,7 @@ If called by a mouse-event, pops up a menu with the result."
     ;; If no frame exists yet, we have no idea what width to use.
     (and (= width 10)
          (not window-system)
-         (setq width (or (getenv "COLUMNS") 80)))
+         (setq width (string-to-number (or (getenv "COLUMNS") "80"))))
     (setq mode-line-format
           (if buffer-file-name
               `("-" mode-line-modified