[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102612: New version 13.2. (Bug#7582)
From: |
Vinicius Jose Latorre |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102612: New version 13.2. (Bug#7582) |
Date: |
Wed, 08 Dec 2010 17:25:11 -0200 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102612
committer: Vinicius Jose Latorre <address@hidden
branch nick: trunk
timestamp: Wed 2010-12-08 17:25:11 -0200
message:
New version 13.2. (Bug#7582)
modified:
lisp/ChangeLog
lisp/whitespace.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-12-08 08:09:27 +0000
+++ b/lisp/ChangeLog 2010-12-08 19:25:11 +0000
@@ -1,3 +1,8 @@
+2010-12-08 Vinicius Jose Latorre <address@hidden>
+
+ * whitespace.el: New version 13.2.
+ (whitespace-cleanup-region): Tiny code fix. (Bug#7582)
+
2010-12-08 Karl Fogel <address@hidden>
* bookmark.el: Adjust parameter names and doc strings to resolve
=== modified file 'lisp/whitespace.el'
--- a/lisp/whitespace.el 2010-09-06 16:38:03 +0000
+++ b/lisp/whitespace.el 2010-12-08 19:25:11 +0000
@@ -6,7 +6,7 @@
;; Author: Vinicius Jose Latorre <address@hidden>
;; Maintainer: Vinicius Jose Latorre <address@hidden>
;; Keywords: data, wp
-;; Version: 13.1
+;; Version: 13.2
;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
;; This file is part of GNU Emacs.
@@ -1652,12 +1652,12 @@
(whitespace-replace-action
(if whitespace-indent-tabs-mode 'tabify 'untabify)
rstart rend whitespace-space-before-tab-regexp
- (if whitespace-indent-tabs-mode 1 2)))
+ (if whitespace-indent-tabs-mode 0 2)))
;; ACTION: replace SPACEs before TAB by TABs.
((memq 'space-before-tab::tab whitespace-style)
(whitespace-replace-action
'tabify rstart rend
- whitespace-space-before-tab-regexp 1))
+ whitespace-space-before-tab-regexp 0))
;; ACTION: replace TABs by SPACEs.
((memq 'space-before-tab::space whitespace-style)
(whitespace-replace-action
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102612: New version 13.2. (Bug#7582),
Vinicius Jose Latorre <=