* linum.el (linum-delete-overlays, linum-update-window):
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 22 Sep 2009 00:06:28 +0000 (00:06 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 22 Sep 2009 00:06:28 +0000 (00:06 +0000)
  Do not modify the right margin.  (Bug#3971)

lisp/ChangeLog
lisp/linum.el

index 56328bb..b0ecec1 100644 (file)
@@ -1,3 +1,8 @@
+2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
+
+       * linum.el (linum-delete-overlays, linum-update-window):
+       Do not modify the right margin.  (Bug#3971)
+
 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
 
        * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
index 9e0e54a..81b48e9 100644 (file)
@@ -113,7 +113,7 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
   (mapc #'delete-overlay linum-overlays)
   (setq linum-overlays nil)
   (dolist (w (get-buffer-window-list (current-buffer) nil t))
-    (set-window-margins w 0)))
+    (set-window-margins w 0 (cdr (window-margins w)))))
 
 (defun linum-update-current ()
   "Update line numbers for the current buffer."
@@ -168,7 +168,7 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
             (overlay-put ov 'linum-str str))))
       (forward-line)
       (setq line (1+ line)))
-    (set-window-margins win width)))
+    (set-window-margins win width (cdr (window-margins win)))))
 
 (defun linum-after-change (beg end len)
   ;; update overlays on deletions, and after newlines are inserted