aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorXue Fuqiao2013-06-04 07:34:27 +0800
committerXue Fuqiao2013-06-04 07:34:27 +0800
commitc362f1950814689b0a6f03f0fa48b07784b90a16 (patch)
treeecb082e3fcca890b57ddc42f733808cca5e782a3 /admin
parentd3ffe17c6f56435ebd2aca787122a3982ac5fcb2 (diff)
parentb9110c6b2f796b5147b018c3d70df9d6af657eff (diff)
downloademacs-c362f1950814689b0a6f03f0fa48b07784b90a16.tar.gz
emacs-c362f1950814689b0a6f03f0fa48b07784b90a16.zip
Merge from mainline.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog7
-rw-r--r--admin/grammars/srecode-template.wy6
2 files changed, 12 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 221d5c0586c..ac6031fa205 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,10 @@
12013-06-02 Eric Ludlam <zappo@gnu.org>
2
3 * grammars/srecode-template.wy (variable): Accept a single number
4 as a variable value. Allows the 'priority' to be set to a number.
5 (wisent-srecode-template-lexer): Move number up so it can be
6 created.
7
12013-05-16 Glenn Morris <rgm@gnu.org> 82013-05-16 Glenn Morris <rgm@gnu.org>
2 9
3 * cus-test.el (cus-test-cus-load-groups): New function. 10 * cus-test.el (cus-test-cus-load-groups): New function.
diff --git a/admin/grammars/srecode-template.wy b/admin/grammars/srecode-template.wy
index de9bf351ac6..fd3f61905d3 100644
--- a/admin/grammars/srecode-template.wy
+++ b/admin/grammars/srecode-template.wy
@@ -125,6 +125,10 @@ opt-read-fcn
125variable 125variable
126 : SET symbol insertable-string-list newline 126 : SET symbol insertable-string-list newline
127 (VARIABLE-TAG $2 nil $3) 127 (VARIABLE-TAG $2 nil $3)
128 | SET symbol number newline
129 ;; This so a common error w/ priority works.
130 ;; Note that "number" still has a string value in the lexer.
131 (VARIABLE-TAG $2 nil (list $3))
128 | SHOW symbol newline 132 | SHOW symbol newline
129 (VARIABLE-TAG $2 nil t) 133 (VARIABLE-TAG $2 nil t)
130 ; 134 ;
@@ -260,8 +264,8 @@ It ignores whitespace, newlines and comments."
260 srecode-template-separator-block 264 srecode-template-separator-block
261 srecode-template-wy--<keyword>-keyword-analyzer 265 srecode-template-wy--<keyword>-keyword-analyzer
262 srecode-template-property-analyzer 266 srecode-template-property-analyzer
263 srecode-template-wy--<symbol>-regexp-analyzer
264 srecode-template-wy--<number>-regexp-analyzer 267 srecode-template-wy--<number>-regexp-analyzer
268 srecode-template-wy--<symbol>-regexp-analyzer
265 srecode-template-wy--<string>-sexp-analyzer 269 srecode-template-wy--<string>-sexp-analyzer
266 srecode-template-wy--<punctuation>-string-analyzer 270 srecode-template-wy--<punctuation>-string-analyzer
267 semantic-lex-default-action 271 semantic-lex-default-action