1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
From 24858481f00c621f0f09ed71584240b67e6c0c08 Mon Sep 17 00:00:00 2001
From: Charles Briscoe-Smith <cpbs@debian.org>
Date: Sat, 18 Jan 2014 16:21:15 +0000
Subject: Add a manual page
Author: Colin Watson <cjwatson@debian.org>
Forwarded: no
Last-Update: 2014-01-18
Patch-Name: manual.patch
---
jlex.1 | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 jlex.1
diff --git a/jlex.1 b/jlex.1
new file mode 100644
index 0000000..9b830f2
--- /dev/null
+++ b/jlex.1
@@ -0,0 +1,61 @@
+.\" jlex.1
+.\" Written by Charles Briscoe-Smith, and hereby contributed to the
+.\" public domain
+.TH JLEX 1 "6 Aug 2001"
+.SH NAME
+jlex \- lexical analyser generator for Java(tm)
+.SH SYNOPSIS
+.B jlex
+.I specfile
+.SH DESCRIPTION
+JLex
+takes the language specification in
+.I specfile
+and generates Java(tm) source code for a lexical analyser corresponding
+to the specification.
+.PP
+The lexical analyzer source code is placed in a file whose name
+is the name of the JLex
+specification file, with the string ".java" added to the end. For
+example, if the JLex specification file is called
+.IR foo.lex ,
+the lexical analyzer
+source code file that JLex produces will be called
+.IR foo.lex.java .)
+.PP
+The resulting lexical analyzer source code
+should be compiled with a Java compiler.
+This produces a lexical analyzer class file,
+which can then be used in your application.
+If the default settings have not been changed,
+the lexical analyzer class will be called Yylex
+and the class files will named Yylex.class and Yytoken.class.
+.PP
+For more information, see the JLex manual in
+.IR /usr/share/doc/jlex/manual.html .
+.SH "SEE ALSO"
+.IR /usr/share/doc/jlex/manual.html ,
+.IR /usr/share/doc/jlex/bugs.html ,
+.IR /usr/share/doc/jlex/README .
+.SH DIAGNOSTICS
+.B jlex
+produces diagnostic output to inform you of its progress.
+.SH BUGS
+See
+.I /usr/share/doc/jlex/bugs.html
+for information about known bugs in JLex.
+.PP
+Please report bugs in the Debian version of JLex to the Debian
+bug tracking system in the first instance.
+Otherwise, please contact A. Appel <appel@princeton.edu>.
+.SH AUTHOR
+JLex was written by Elliot Joel Berk at Princeton University.
+It is now maintained by C. Scott Ananian.
+.PP
+This manual page was written by Charles Briscoe-Smith <cpbs@debian.org>,
+modified by Colin Watson <cjwatson@debian.org>, and is hereby contributed
+to the Public Domain.
+.PP
+Please see the file /usr/share/doc/jlex/copyright for more information.
+.SH "TRADEMARK ACKNOWLEDGEMENTS"
+"Java" is a trademark or registered trademark of Sun Microsystems, Inc.
|