1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
;; -*- mode: emacs-lisp -*-
(("<?php" . php-php-tag)
("\n\n")
("__halt_compiler" . php-keyword)
("();\n\n")
("bool" . font-lock-type-face)
(";\n")
("boolean" . font-lock-type-face)
(";\n")
("int" . font-lock-type-face)
(";\n")
("integer" . font-lock-type-face)
(";\n")
("float" . font-lock-type-face)
(";\n")
("double" . font-lock-type-face)
(";\n")
("real" . font-lock-type-face)
(";\n")
("string" . font-lock-type-face)
(";\n")
("object" . font-lock-type-face)
(";\nresource;\n")
("mixed" . font-lock-type-face)
(";\n"))
|