Changeset 4058 for trunk/lisp/buff-menu.el
- Timestamp:
- 04/16/06 21:46:31 (3 years ago)
- Files:
-
- trunk/lisp/buff-menu.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/buff-menu.el
r4037 r4058 707 707 (when Buffer-menu-use-header-line 708 708 (let ((pos 0)) 709 ;; Turn spaces in the header into stretch specs so they work710 ;; regardless of the header-line face.711 (while (string-match "[ \t ]+" header pos)709 ;; Turn whitespace chars in the header into stretch specs so 710 ;; they work regardless of the header-line face. 711 (while (string-match "[ \t\n]+" header pos) 712 712 (setq pos (match-end 0)) 713 713 (put-text-property (match-beginning 0) pos 'display … … 727 727 (setq standard-output (current-buffer)) 728 728 (unless Buffer-menu-use-header-line 729 ;; Use U+2014 (EM DASH) to underline if possible, else U+002D (HYPHEN-MINUS) 729 730 (let ((underline (if (char-displayable-p ?â) ?â ?-))) 730 731 (insert header
