el/dot-emacs.el (arm-assembler-mode): Untangle strange nesting.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 2 Apr 2013 01:49:34 +0000 (02:49 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 2 Apr 2013 01:50:36 +0000 (02:50 +0100)
There's no way the call to `mdw-post-config-mode-hack' should have been
inside the `setq'.

el/dot-emacs.el

index e9ed90a..850db10 100644 (file)
@@ -1864,9 +1864,9 @@ strip numbers instead."
 
         ;; And anything else is punctuation.
         (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
-              '(0 mdw-punct-face)))
+              '(0 mdw-punct-face))))
 
-  (mdw-post-config-mode-hack))
+  (mdw-post-config-mode-hack)
   (run-hooks 'arm-assembler-mode-hook))
 
 ;;;--------------------------------------------------------------------------