summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/inemacs
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-03-23 11:14:27 +0100
committerGravatar Tom Willemsen2011-03-23 11:14:27 +0100
commit0d342f0aee3f2f800e486c0051dabe718a7b2841 (patch)
tree1f55afabb8f4876dbe564f7ed5d8e573ddc78df3 /emacs.d/nxhtml/tests/inemacs
parentd4510153b17625a3dd2f1852cc6392fc26efecf6 (diff)
downloaddotfiles-0d342f0aee3f2f800e486c0051dabe718a7b2841.tar.gz
dotfiles-0d342f0aee3f2f800e486c0051dabe718a7b2841.zip
I don't like nxhtml
Diffstat (limited to 'emacs.d/nxhtml/tests/inemacs')
-rw-r--r--emacs.d/nxhtml/tests/inemacs/bug1013.el35
1 files changed, 0 insertions, 35 deletions
diff --git a/emacs.d/nxhtml/tests/inemacs/bug1013.el b/emacs.d/nxhtml/tests/inemacs/bug1013.el
deleted file mode 100644
index 6b0aab2..0000000
--- a/emacs.d/nxhtml/tests/inemacs/bug1013.el
+++ /dev/null
@@ -1,35 +0,0 @@
-;; Setup
-(defvar word-wrap2 nil)
-(make-variable-buffer-local 'word-wrap2)
-(set-default 'word-wrap2 nil)
-
-(defcustom word-wrap3 nil
- "doc 3"
- :type 'boolean)
-(make-variable-buffer-local 'word-wrap3)
-(set-default 'word-wrap3 nil)
-
-(set-default 'word-wrap nil)
-(set-default 'truncate-lines nil)
-
-(put 'truncate-lines 'permanent-local t)
-(put 'word-wrap 'permanent-local t)
-(put 'word-wrap2 'permanent-local t)
-(put 'word-wrap3 'permanent-local t)
-
-(setq truncate-lines t)
-(setq word-wrap t)
-(setq word-wrap2 t)
-(setq word-wrap3 t)
-
-(kill-all-local-variables)
-
-;; Test
-(ert-should (eq (default-value 'word-wrap3) nil))
-(ert-should (eq word-wrap3 t))
-(ert-should (eq (default-value 'word-wrap2) nil))
-(ert-should (eq word-wrap2 t))
-(ert-should (eq (default-value 'truncate-lines) nil))
-(ert-should (eq truncate-lines t))
-(ert-should (eq (default-value 'word-wrap) nil))
-(ert-should (eq word-wrap t))