emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106480: shr.el (shr-table-horizontal


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106480: shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to avoid later breakage.
Date: Wed, 23 Nov 2011 00:20:17 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106480
author: Lars Magne Ingebrigtsen <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Wed 2011-11-23 00:20:17 +0000
message:
  shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to avoid later 
breakage.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/shr.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2011-11-22 02:17:20 +0000
+++ b/lisp/gnus/ChangeLog       2011-11-23 00:20:17 +0000
@@ -1,3 +1,8 @@
+2011-11-22  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
+       avoid later breakage.
+
 2011-11-22  Katsumi Yamaoka  <address@hidden>
 
        * gnus-art.el (gnus-article-setup-buffer): Decode group name used for

=== modified file 'lisp/gnus/shr.el'
--- a/lisp/gnus/shr.el  2011-11-22 00:59:33 +0000
+++ b/lisp/gnus/shr.el  2011-11-23 00:20:17 +0000
@@ -53,17 +53,17 @@
   :group 'shr
   :type 'regexp)
 
-(defcustom shr-table-horizontal-line ?         ; space
+(defcustom shr-table-horizontal-line ?\s
   "Character used to draw horizontal table lines."
   :group 'shr
   :type 'character)
 
-(defcustom shr-table-vertical-line ?   ; space
+(defcustom shr-table-vertical-line ?\s
   "Character used to draw vertical table lines."
   :group 'shr
   :type 'character)
 
-(defcustom shr-table-corner ?          ; space
+(defcustom shr-table-corner ?\s
   "Character used to draw table corners."
   :group 'shr
   :type 'character)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]