comparison lisp/progmodes/ebnf-yac.el @ 54208:7d439240423b

Doc fix.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Sun, 29 Feb 2004 23:27:07 +0000
parents 766aaa5bded5
children fc6e53c00fcf
comparison
equal deleted inserted replaced
54207:15161d9793da 54208:7d439240423b
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
4 ;; Free Sofware Foundation, Inc. 4 ;; Free Sofware Foundation, Inc.
5 5
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> 6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> 7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
8 ;; Time-stamp: <2004/02/22 14:24:17 vinicius> 8 ;; Time-stamp: <2004/02/29 20:23:29 vinicius>
9 ;; Keywords: wp, ebnf, PostScript 9 ;; Keywords: wp, ebnf, PostScript
10 ;; Version: 1.2.1 10 ;; Version: 1.2.1
11 11
12 ;; This file is part of GNU Emacs. 12 ;; This file is part of GNU Emacs.
13 13
66 ;; Name-List = { Name || "," }*. 66 ;; Name-List = { Name || "," }*.
67 ;; 67 ;;
68 ;; Name = "[A-Za-z][A-Za-z0-9_.]*". 68 ;; Name = "[A-Za-z][A-Za-z0-9_.]*".
69 ;; 69 ;;
70 ;; Comment = "/*" "any character, but the sequence \"*/\"" "*/" 70 ;; Comment = "/*" "any character, but the sequence \"*/\"" "*/"
71 ;; | "//" "any character" "\\n". 71 ;; | "//" "any character, but the newline \"\\n\"" "\\n".
72 ;; 72 ;;
73 ;; 73 ;;
74 ;; In other words, a valid Name begins with a letter (upper or lower case) 74 ;; In other words, a valid Name begins with a letter (upper or lower case)
75 ;; followed by letters, decimal digits, underscore (_) or point (.). For 75 ;; followed by letters, decimal digits, underscore (_) or point (.). For
76 ;; example: this_is_a_valid.name, Another_EXAMPLE, mIxEd.CaSe. 76 ;; example: this_is_a_valid.name, Another_EXAMPLE, mIxEd.CaSe.