diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-20 11:53:51 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-20 11:53:51 +0200 |
commit | 8ca422621c3a1c366f589f430f496d586e11e509 (patch) | |
tree | b1843dbc30aec9553d96d1c45eb704e8725f3891 /lisp/proced.el | |
parent | 2ecab2b506cc69d8a1859982e1e2dc44e2b46f65 (diff) | |
download | emacs-8ca422621c3a1c366f589f430f496d586e11e509.tar.gz |
(proced-update): Revert yesterday's bug#1779 patch, which apparently didn't work.
Diffstat (limited to 'lisp/proced.el')
-rw-r--r-- | lisp/proced.el | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/lisp/proced.el b/lisp/proced.el index b1a7aed722c..94ea579ebd8 100644 --- a/lisp/proced.el +++ b/lisp/proced.el @@ -1509,16 +1509,6 @@ Replace newline characters by \"^J\" (two characters)." (if (string-match "[ \t]+$" proced-header-line) (setq proced-header-line (substring proced-header-line 0 (match-beginning 0)))) - (setq proced-header-line (concat " " proced-header-line)) - ;; From buff-menu.el: Turn whitespace chars in the header into - ;; stretch specs so they work regardless of the header-line face. - (let ((pos 0) - (header proced-header-line)) - (while (string-match "[ \t\n]+" header pos) - (setq pos (match-end 0)) - (put-text-property (match-beginning 0) pos 'display - (list 'space :align-to pos) - header))) ;; (delete-trailing-whitespace) (goto-char (point-min)) (while (re-search-forward "[ \t\r]+$" nil t) @@ -1612,6 +1602,7 @@ After updating a displayed Proced buffer run the normal hook (while (not (eobp)) (insert " ") (forward-line)) + (setq proced-header-line (concat " " proced-header-line)) (if revert (set-buffer-modified-p nil)) ;; set `goal-column' |