summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/bug-381191-dh-test.el
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/in/bug-381191-dh-test.el
parentd4510153b17625a3dd2f1852cc6392fc26efecf6 (diff)
downloaddotfiles-0d342f0aee3f2f800e486c0051dabe718a7b2841.tar.gz
dotfiles-0d342f0aee3f2f800e486c0051dabe718a7b2841.zip
I don't like nxhtml
Diffstat (limited to 'emacs.d/nxhtml/tests/in/bug-381191-dh-test.el')
-rw-r--r--emacs.d/nxhtml/tests/in/bug-381191-dh-test.el23
1 files changed, 0 insertions, 23 deletions
diff --git a/emacs.d/nxhtml/tests/in/bug-381191-dh-test.el b/emacs.d/nxhtml/tests/in/bug-381191-dh-test.el
deleted file mode 100644
index d960a10..0000000
--- a/emacs.d/nxhtml/tests/in/bug-381191-dh-test.el
+++ /dev/null
@@ -1,23 +0,0 @@
-;; 3. Add a new c-indentation-style:
-
-(defconst drupal
- '((c-basic-offset . 2)
- (c-offsets-alist . ((arglist-close . c-lineup-close-paren)
- (case-label . +)
- (arglist-intro . +)
- (arglist-cont-nonempty . c-lineup-math))))
- "My Drupal Programming style")
-
-(c-add-style "drupal" drupal)
-
-;; 4. Open file test.php, attached.
-
-;; 5. Run `c-set-style' and select "drupal"
-
-;; 6. Select the whole buffer and press "C-M-\" (or any other indentation command,
-;; for that matter) and watch as the array elements are lined up with "array(",
-;; whereas they should be indented by 2.
-
-;; 7. Run M-x php-mode and c-set-style to drupal
-
-;; 8. Try indenting again to see that indentation now works properly.