Skip to content

Commit ca6ae67

Browse files
authored
Merge pull request #697 from syohex/quote
Remove needless quote from choice values
2 parents c143ab3 + 52d96a8 commit ca6ae67

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

lisp/php.el

+14-14
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ The URL to use open PHP manual and search word."
6060
You can replace \"en\" with your ISO language code."
6161
:group 'php
6262
:tag "PHP Manual URL"
63-
:type '(choice (const :tag "English" 'en)
64-
(const :tag "Brazilian Portuguese" 'pt_BR)
65-
(const :tag "Chinese (Simplified)" 'zh)
66-
(const :tag "French" 'fr)
67-
(const :tag "German" 'de)
68-
(const :tag "Japanese" 'ja)
69-
(const :tag "Romanian" 'ro)
70-
(const :tag "Russian" 'ru)
71-
(const :tag "Spanish" 'es)
72-
(const :tag "Turkish" 'tr)
63+
:type '(choice (const :tag "English" en)
64+
(const :tag "Brazilian Portuguese" pt_BR)
65+
(const :tag "Chinese (Simplified)" zh)
66+
(const :tag "French" fr)
67+
(const :tag "German" de)
68+
(const :tag "Japanese" ja)
69+
(const :tag "Romanian" ro)
70+
(const :tag "Russian" ru)
71+
(const :tag "Spanish" es)
72+
(const :tag "Turkish" tr)
7373
(string :tag "PHP manual URL")))
7474

7575
(defcustom php-search-url nil
@@ -411,8 +411,8 @@ can be used to match against definitions for that classlike."
411411
(defcustom php-imenu-generic-expression 'php-imenu-generic-expression-default
412412
"Default Imenu generic expression for PHP Mode. See `imenu-generic-expression'."
413413
:type '(choice (alist :key-type string :value-type list)
414-
(const 'php-imenu-generic-expression-legacy)
415-
(const 'php-imenu-generic-expression-simple)
414+
(const php-imenu-generic-expression-legacy)
415+
(const php-imenu-generic-expression-simple)
416416
variable)
417417
:group 'php)
418418

@@ -492,8 +492,8 @@ Look at the `php-executable' variable instead of the constant \"php\" command."
492492
"Regexp pattern variable-name of HTML detection."
493493
:group 'php
494494
:tag "PHP Re Detect HTML Tag"
495-
:type '(choice (const :tag "Default pattern" 'php-re-detect-html-tag-default)
496-
(const :tag "Aggressive pattern" 'php-re-detect-html-tag-aggressive)
495+
:type '(choice (const :tag "Default pattern" php-re-detect-html-tag-default)
496+
(const :tag "Aggressive pattern" php-re-detect-html-tag-aggressive)
497497
(variable :tag "Variable name of RegExp pattern")))
498498

499499
(defsubst php-re-detect-html-tag ()

0 commit comments

Comments
 (0)