]> git.eshelyaron.com Git - emacs.git/commitdiff
(list-buffers-noselect): Use explicit unicode code rather than the
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Feb 2007 15:46:25 +0000 (15:46 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Feb 2007 15:46:25 +0000 (15:46 +0000)
corresponding unicode char, to make the code more readable.

lisp/ChangeLog
lisp/buff-menu.el

index 3aef0f71f4b4868122af6220602a5c90577b03e8..c26efc42ece22ea0d473dda6137277e36dc6a03c 100644 (file)
@@ -1,3 +1,9 @@
+2007-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * buff-menu.el (list-buffers-noselect): Use explicit unicode code
+       rather than the corresponding unicode char, to make the code
+       more readable.
+
 2007-02-19  Juanma Barranquero  <lekktu@gmail.com>
 
        * speedbar.el (speedbar-frame-mode, speedbar-frame-width)
index d67173ce7337f5e2b6921834a7a33503b5aa6e3c..f1336a417b94647fda8ed67cb5f0e613f514afde 100644 (file)
@@ -721,7 +721,7 @@ For more information, see the function `buffer-menu'."
       (put-text-property 0 3 'face 'fixed-pitch header)
       ;; Add a "dummy" leading space to align the beginning of the header
       ;; line with the beginning of the text (rather than with the left
-      ;; scrollbar or the left fringe).  -Stef
+      ;; scrollbar or the left fringe).  --Stef
       (setq header (concat (propertize " " 'display '(space :align-to 0))
                           header)))
     (with-current-buffer (get-buffer-create "*Buffer List*")
@@ -729,8 +729,9 @@ For more information, see the function `buffer-menu'."
       (erase-buffer)
       (setq standard-output (current-buffer))
       (unless Buffer-menu-use-header-line
-        ;; Use U+2014 (EM DASH) to underline if possible, else U+002D (HYPHEN-MINUS)
-       (let ((underline (if (char-displayable-p ?—) ?— ?-)))
+        ;; Use U+2014 (EM DASH) to underline if possible, else use ASCII
+        ;; (i.e. U+002D, HYPHEN-MINUS).
+       (let ((underline (if (char-displayable-p ?\u2014) ?\u2014 ?-)))
          (insert header
                  (apply 'string
                         (mapcar (lambda (c)