mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-01 08:17:38 +00:00
New version 13.2. (Bug#7582)
This commit is contained in:
parent
71044abebe
commit
1649810227
@ -1,3 +1,8 @@
|
||||
2010-12-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
|
||||
* whitespace.el: New version 13.2.
|
||||
(whitespace-cleanup-region): Tiny code fix. (Bug#7582)
|
||||
|
||||
2010-12-08 Karl Fogel <kfogel@red-bean.com>
|
||||
|
||||
* bookmark.el: Adjust parameter names and doc strings to resolve
|
||||
|
@ -6,7 +6,7 @@
|
||||
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
;; 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 @@ documentation."
|
||||
(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
|
||||
|
Loading…
Reference in New Issue
Block a user