exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

uncrustify.el (455B)


      1 ;; suggested integration of uncrustify for Emacs
      2 ;; This assumes that the 'uncrustify-mode.el' is
      3 ;; installed to '~/.emacs.d/load-path/'. Feel free
      4 ;; to put it elsewhere and adjust the load path below!
      5 
      6 ;; adding the following to ~/.emacs will then run
      7 ;; uncrustify whenever saving a C buffer.
      8 
      9 (add-to-list 'load-path "~/.emacs.d/load-path/")
     10 (require 'uncrustify-mode)
     11 (add-hook 'c-mode-common-hook 
     12 	  '(lambda ()
     13              (uncrustify-mode 1)))