]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/wisi/wisi-compile.el
Fix some quoting problems in doc strings
[gnu-emacs-elpa] / packages / wisi / wisi-compile.el
index b70a1aea4b9ac4d7b12f59396c9e2a08b32980fa..5c788e78437baa75533191724b6240fff71e9b83 100644 (file)
@@ -21,7 +21,7 @@
 ;;
 
 ;;; Commentary:
 ;;
 
 ;;; Commentary:
-;; 
+;;
 
 ;;;; History: first experimental version Jan 2013
 ;;
 
 ;;;; History: first experimental version Jan 2013
 ;;
@@ -144,18 +144,18 @@ sides; nonterm is the left hand side.
 ACTIONS is an array indexed by parser state, of alists indexed by
 terminal tokens. The value of each item in the alists is one of:
 
 ACTIONS is an array indexed by parser state, of alists indexed by
 terminal tokens. The value of each item in the alists is one of:
 
-'error
+`error'
 
 
-'accept
+`accept'
 
 integer - shift; gives new state
 
 
 integer - shift; gives new state
 
-'(nonterm . index) - reduce by nonterm production index.
+(nonterm . index) - reduce by nonterm production index.
 
 
-'(integer (nonterm . index)) - a shift/reduce conflict
-'((nonterm . index) (nonterm . index)) - a reduce/reduce conflict
+(integer (nonterm . index)) - a shift/reduce conflict
+((nonterm . index) (nonterm . index)) - a reduce/reduce conflict
 
 
-The first item in the alist must have the key 'default (not a
+The first item in the alist must have the key `default' (not a
 terminal token); it is used when no other item matches the
 current token.
 
 terminal token); it is used when no other item matches the
 current token.