cb2f5be2bf
locale.alias file (Paul Dickson, #173781) - fix autoload of php-mode in php-mode-init.el (Christopher Beland, #179484)
8 lines
219 B
EmacsLisp
8 lines
219 B
EmacsLisp
;; Use php-mode for .php,.php3,.php4 and .phtml files
|
|
|
|
(autoload 'php-mode "php-mode" "Major mode for editing PHP code." t)
|
|
|
|
(add-to-list 'auto-mode-alist
|
|
'("\\.php[34]\\'\\|\\.php\\'\\|\\.phtml\\'" . php-mode))
|
|
|