Show
Ignore:
Timestamp:
01/29/09 20:06:18 (4 years ago)
Author:
imakado
Message:

Merge branch 'minor-mode'

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/elisp/php-completion/trunk/php-completion.el

    r29239 r29240  
    7979  "`%s' is replaced to query. 
    8080see `phpcmp-search-url'" 
     81  :group 'php-completion 
     82  :type 'string) 
     83 
     84(defcustom phpcmp-lighter " Completion" 
     85  "value is displayed in the modeline when the php-completion-mode is on." 
    8186  :group 'php-completion 
    8287  :type 'string) 
     
    63936398 
    63946399 
     6400;;; Mode 
     6401 
     6402(define-minor-mode php-completion-mode 
     6403  "php-completion mode" 
     6404  :lighter phpcmp-lighter 
     6405  :group 'php-completion 
     6406  (phpcmp-async-set-functions)) 
     6407 
    63956408(provide 'php-completion)