Disable whitespace-newline-mode properly.
This commit is contained in:
parent
c2ff3c02a4
commit
84bd6e9e02
4 changed files with 15 additions and 5 deletions
0
etc/images/icons/allout-widgets/light-bg/locked-encrypted.png
Normal file → Executable file
0
etc/images/icons/allout-widgets/light-bg/locked-encrypted.png
Normal file → Executable file
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
0
etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png
Normal file → Executable file
0
etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png
Normal file → Executable file
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 202 B |
|
@ -1,3 +1,9 @@
|
|||
2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
|
||||
* whitespace.el: New version 13.2.2.
|
||||
(whitespace-newline-mode): Disable properly. Reported by Sarah
|
||||
<EmacsWiki>.
|
||||
|
||||
2011-10-30 Ulf Jasper <ulf.jasper@web.de>
|
||||
|
||||
* net/newst-treeview.el: Remove "Time-stamp".
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
;; Keywords: data, wp
|
||||
;; Version: 13.2.1
|
||||
;; Version: 13.2.2
|
||||
;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
@ -1102,10 +1102,14 @@ See also `whitespace-newline' and `whitespace-display-mappings'."
|
|||
:init-value nil
|
||||
:global nil
|
||||
:group 'whitespace
|
||||
(let ((whitespace-style '(face newline-mark newline)))
|
||||
(whitespace-mode (if whitespace-newline-mode 1 -1))
|
||||
;; Sync states (running a batch job).
|
||||
(setq whitespace-newline-mode whitespace-mode)))
|
||||
(cond
|
||||
(whitespace-newline-mode
|
||||
(let ((whitespace-style '(face newline-mark newline)))
|
||||
(whitespace-mode whitespace-newline-mode)))
|
||||
(t
|
||||
(whitespace-mode -1)))
|
||||
;; sync states (running a batch job)
|
||||
(setq whitespace-newline-mode whitespace-mode))
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
|
Loading…
Add table
Reference in a new issue