===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-110-
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex:111:No problem. When the input method receives $<$i$>$, it inserts \char`\"{}I\char`\"{} in the preedit buffer. It knows that there is another rule that may match the additional key event $<$i$>$. So, after inserting \char`\"{}I\char`\"{}, it suspends the normal behavior of shifting to the initial condition, and waits for another key. Thus, the user sees \char`\"{}I\char`\"{} with underline, which indicates it is not yet committed.
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-112-
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-118-
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex:119:The input method knows that there are no rules that match the $<$i$>$ $<$a$>$ key sequence. So, when it receives the next $<$a$>$, it executes the suspended behavior (i.e. shifting to the initial condition), which leads to commit \char`\"{}I\char`\"{}. Then the input method tries to handle $<$a$>$ in the current state, which leads to commit \char`\"{}A\char`\"{}.
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-120-
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-181-
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex:182:Let's see what happens when the user types the key sequence $<$a$>$ $<$b$>$ $<$ $>$. Upon $<$a$>$, \char`\"{}A\char`\"{} is inserted into the buffer and the state shifts to {\ttfamily non-\/upcase}. So, the next $<$b$>$ is handled in the {\ttfamily non-\/upcase} state. As it matches a rule in the map {\ttfamily lower}, \char`\"{}b\char`\"{} is inserted in the preedit buffer and characters in the buffer (\char`\"{}Ab\char`\"{}) are committed explicitly by the \char`\"{}commit\char`\"{} command in BRANCH-\/ACTION. After that, the input method is still in the {\ttfamily non-\/upcase} state. So the next $<$ $>$ is also handled in {\ttfamily non-\/upcase}. For this time, no rule in this state matches it. Thus the branch {\ttfamily (nil (shift init))} is selected and the state is shifted to {\ttfamily init}. Please note that $<$ $>$ is not yet handled because the map {\ttfamily nil} does not consume any key event. So, the input method tries to handle it in the {\ttfamily init} state. Again no rule matches it. Therefore, that event is given back to the application program, which usually inserts a space for that.
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-183-
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-184-When you type \char`\"{}a quick blown fox\char`\"{} with this input method, you get \char`\"{}A
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex:185:Quick Blown Fox\char`\"{}. OK, you find a typo in \char`\"{}blown\char`\"{}, which should be \char`\"{}brown\char`\"{}. To correct it, you probably move the cursor after \char`\"{}l\char`\"{} and type $<$Backspace$>$ and $<$r$>$. However, if the current input method is still active, a capital \char`\"{}R\char`\"{} is inserted. It is not a sophisticated behavior.\subsection{Example of utilizing surrounding text support}\label{m17nDBTutorial_im-surrounding-text}
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-186-To make the input method work well also in such a case, we must use \char`\"{}surrounding text support\char`\"{}. It is a way to check characters around the inputting spot and delete them if necessary. Note that this facility is available only with Gtk+ applications and Qt applications. You cannot use it with applications that use XIM to communicate with an input method.
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-270-
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex:271:(\char`\"{}def\char`\"{} is in the preedit buffer, two \char`\"{}$|$\char`\"{}s indicate borders between the preedit buffer and the surrounding text) and your current position in the preedit buffer is between \char`\"{}d\char`\"{} and \char`\"{}e\char`\"{}, you get these values:
m17n-docs-1.6.2/usr/latex/m17nDBTutorial.tex-272-
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-45-
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex:46:An element that matches the regular expression {\ttfamily \char`\"{}([$^\wedge$\char`\"{}]$|$$\backslash$\char`\"{})$\ast$\char`\"{}} represents a property whose key is {\ttfamily Mtext}. The backslash escape explained above also applies here. Moreover, each part in the element matching the regular expression {\ttfamily  $\backslash$[xX][0-\/9A-\/Fa-\/f][0-\/9A-\/Fa-\/f]} is replaced with its hexadecimal interpretation.
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-47-
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-153-
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex:154:If TAG0 is neither `charset' nor `char-\/table', and TAGn (n $>$ 0) is a symbol `$\ast$', FILE can contain a wildcard charater, and all files matching FILE accoding to the rules used by the shell are the target of database files. In that case, each file must contain SELF-\/DEFINITION which is a plist element providing the actual TAGn values by the form:
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-155-
##############################################
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-1135-The definition of the input method is very simple as below, and it is quite straight forward to extend it to cover all Latin characters.\subsection{EXAMPLE 2}\label{m17nDBFormat_im-example2}
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex:1136:This example is for inputting Unicode characters by typing C-\/u (Control-\/u) followed by four hexadecimal digits. For instance, when you type (\char`\"{}$^\wedge$u\char`\"{} means Control-\/u): \begin{DoxyVerb}
m17n-docs-1.6.2/usr/latex/m17nDBFormat.tex-1137-    ^u2190^u2191^u2192^u2193
##############################################
m17n-docs-1.6.2/usr/latex/Makefile-28-	      latex refman.tex ;\
m17n-docs-1.6.2/usr/latex/Makefile:29:	      latex_count=`expr $$latex_count - 1` ;\
m17n-docs-1.6.2/usr/latex/Makefile-30-	    done
##############################################
m17n-docs-1.6.2/usr/latex/group__m17nDatabase.tex-33-\subsection{Detailed Description}
m17n-docs-1.6.2/usr/latex/group__m17nDatabase.tex:34:The m17n database and API for it. The m17n library acquires various kinds of information from data in the {\itshape  m17n database\/} on demand. Application programs can also add/load their original data to/from the m17n database by setting the variable \doxyref{mdatabase\_\-dir}{p.}{group__m17nDatabase_ga29022d6905ce43de1ac69cd1f88b36f7} to an application-\/specific directory and storing data in it. Users can overwrite those data by storing preferable data in the directory specified by the environment variable \char`\"{}M17NDIR\char`\"{}, or if it is not set, in the directory \char`\"{}$\sim$/.m17n.d\char`\"{}.
m17n-docs-1.6.2/usr/latex/group__m17nDatabase.tex-35-
##############################################
m17n-docs-1.6.2/usr/latex/structMConverter.tex-46-
m17n-docs-1.6.2/usr/latex/structMConverter.tex:47:If the conversion is lenient, on decoding, an invalid byte is kept per se, and on encoding, an invalid character is replaced with \char`\"{}$<$U+XXXX$>$\char`\"{} (if the character is a Unicode character) or with \char`\"{}$<$M+XXXXXX$>$\char`\"{} (otherwise). \index{MConverter@{MConverter}!last\_\-block@{last\_\-block}}
m17n-docs-1.6.2/usr/latex/structMConverter.tex-48-\index{last\_\-block@{last\_\-block}!MConverter@{MConverter}}
##############################################
m17n-docs-1.6.2/depcomp-67-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
m17n-docs-1.6.2/depcomp:68:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
m17n-docs-1.6.2/depcomp-69-
##############################################
m17n-docs-1.6.2/depcomp-224-  # Version 6 uses the directory in both cases.
m17n-docs-1.6.2/depcomp:225:  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
m17n-docs-1.6.2/depcomp-226-  test "x$dir" = "x$object" && dir=
m17n-docs-1.6.2/depcomp:227:  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
m17n-docs-1.6.2/depcomp-228-  if test "$libtool" = yes; then
##############################################
m17n-docs-1.6.2/depcomp-253-    # Do two passes, one to just change these to
m17n-docs-1.6.2/depcomp:254:    # `$object: dependent.h' and one to simply `dependent.h:'.
m17n-docs-1.6.2/depcomp-255-    sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
##############################################
m17n-docs-1.6.2/depcomp-295-  # Do two passes, one to just change these to
m17n-docs-1.6.2/depcomp:296:  # `$object: dependent.h' and one to simply `dependent.h:'.
m17n-docs-1.6.2/depcomp-297-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
m17n-docs-1.6.2/depcomp-311-  # Much of this is similar to the tru64 case; see comments there.
m17n-docs-1.6.2/depcomp:312:  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
m17n-docs-1.6.2/depcomp-313-  test "x$dir" = "x$object" && dir=
m17n-docs-1.6.2/depcomp:314:  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
m17n-docs-1.6.2/depcomp-315-  if test "$libtool" = yes; then
##############################################
m17n-docs-1.6.2/depcomp-355-   # Subdirectories are respected.
m17n-docs-1.6.2/depcomp:356:   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
m17n-docs-1.6.2/depcomp-357-   test "x$dir" = "x$object" && dir=
m17n-docs-1.6.2/depcomp:358:   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
m17n-docs-1.6.2/depcomp-359-
##############################################
m17n-docs-1.6.2/depcomp-501-  done
m17n-docs-1.6.2/depcomp:502:  obj_suffix=`echo "$object" | sed 's/^.*\././'`
m17n-docs-1.6.2/depcomp-503-  touch "$tmpdepfile"
##############################################
m17n-docs-1.6.2/aclocal.m4-94-        PKG_CHECK_EXISTS([$3],
m17n-docs-1.6.2/aclocal.m4:95:                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
m17n-docs-1.6.2/aclocal.m4-96-			 [pkg_failed=yes])
##############################################
m17n-docs-1.6.2/aclocal.m4-142-        if test $_pkg_short_errors_supported = yes; then
m17n-docs-1.6.2/aclocal.m4:143:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
m17n-docs-1.6.2/aclocal.m4-144-        else 
m17n-docs-1.6.2/aclocal.m4:145:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
m17n-docs-1.6.2/aclocal.m4-146-        fi
##############################################
m17n-docs-1.6.2/aclocal.m4-225-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
m17n-docs-1.6.2/aclocal.m4:226:# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
m17n-docs-1.6.2/aclocal.m4-227-#
##############################################
m17n-docs-1.6.2/aclocal.m4-249-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
m17n-docs-1.6.2/aclocal.m4:250:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
m17n-docs-1.6.2/aclocal.m4-251-# and then we would define $MISSING as
##############################################
m17n-docs-1.6.2/aclocal.m4-265-# expand $ac_aux_dir to an absolute path
m17n-docs-1.6.2/aclocal.m4:266:am_aux_dir=`cd $ac_aux_dir && pwd`
m17n-docs-1.6.2/aclocal.m4-267-])
##############################################
m17n-docs-1.6.2/aclocal.m4-366-  if test "$am_compiler_list" = ""; then
m17n-docs-1.6.2/aclocal.m4:367:     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
m17n-docs-1.6.2/aclocal.m4-368-  fi
##############################################
m17n-docs-1.6.2/aclocal.m4-512-    # Strip MF so we end up with the name of the file.
m17n-docs-1.6.2/aclocal.m4:513:    mf=`echo "$mf" | sed -e 's/:.*$//'`
m17n-docs-1.6.2/aclocal.m4-514-    # Check whether this is an Automake generated Makefile or not.
##############################################
m17n-docs-1.6.2/aclocal.m4-521-    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
m17n-docs-1.6.2/aclocal.m4:522:      dirpart=`AS_DIRNAME("$mf")`
m17n-docs-1.6.2/aclocal.m4-523-    else
##############################################
m17n-docs-1.6.2/aclocal.m4-527-    # from the Makefile without running `make'.
m17n-docs-1.6.2/aclocal.m4:528:    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
m17n-docs-1.6.2/aclocal.m4-529-    test -z "$DEPDIR" && continue
m17n-docs-1.6.2/aclocal.m4:530:    am__include=`sed -n 's/^am__include = //p' < "$mf"`
m17n-docs-1.6.2/aclocal.m4-531-    test -z "am__include" && continue
m17n-docs-1.6.2/aclocal.m4:532:    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
m17n-docs-1.6.2/aclocal.m4-533-    # When using ansi2knr, U may be empty or an underscore; expand it
m17n-docs-1.6.2/aclocal.m4:534:    U=`sed -n 's/^U = //p' < "$mf"`
m17n-docs-1.6.2/aclocal.m4-535-    # Find all dependency output files, they are included files with
##############################################
m17n-docs-1.6.2/aclocal.m4-543-      test -f "$dirpart/$file" && continue
m17n-docs-1.6.2/aclocal.m4:544:      fdir=`AS_DIRNAME(["$file"])`
m17n-docs-1.6.2/aclocal.m4-545-      AS_MKDIR_P([$dirpart/$fdir])
##############################################
m17n-docs-1.6.2/aclocal.m4-598-AC_REQUIRE([AC_PROG_INSTALL])dnl
m17n-docs-1.6.2/aclocal.m4:599:if test "`cd $srcdir && pwd`" != "`pwd`"; then
m17n-docs-1.6.2/aclocal.m4-600-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
m17n-docs-1.6.2/aclocal.m4-700-    * )
m17n-docs-1.6.2/aclocal.m4:701:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
m17n-docs-1.6.2/aclocal.m4-702-  esac
m17n-docs-1.6.2/aclocal.m4-703-done
m17n-docs-1.6.2/aclocal.m4:704:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
m17n-docs-1.6.2/aclocal.m4-705-
##############################################
m17n-docs-1.6.2/aclocal.m4-815-# Ignore all kinds of additional output from `make'.
m17n-docs-1.6.2/aclocal.m4:816:case `$am_make -s -f confmf 2> /dev/null` in #(
m17n-docs-1.6.2/aclocal.m4-817-*the\ am__doit\ target*)
##############################################
m17n-docs-1.6.2/aclocal.m4-825-   echo '.include "confinc"' > confmf
m17n-docs-1.6.2/aclocal.m4:826:   case `$am_make -s -f confmf 2> /dev/null` in #(
m17n-docs-1.6.2/aclocal.m4-827-   *the\ am__doit\ target*)
##############################################
m17n-docs-1.6.2/aclocal.m4-978-if (
m17n-docs-1.6.2/aclocal.m4:979:   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
m17n-docs-1.6.2/aclocal.m4-980-   if test "$[*]" = "X"; then
m17n-docs-1.6.2/aclocal.m4-981-      # -L didn't work.
m17n-docs-1.6.2/aclocal.m4:982:      set X `ls -t "$srcdir/configure" conftest.file`
m17n-docs-1.6.2/aclocal.m4-983-   fi
##############################################
m17n-docs-1.6.2/utils/Makefile.in-250-.c.obj:
m17n-docs-1.6.2/utils/Makefile.in:251:@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
m17n-docs-1.6.2/utils/Makefile.in-252-@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
m17n-docs-1.6.2/utils/Makefile.in-254-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
m17n-docs-1.6.2/utils/Makefile.in:255:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
m17n-docs-1.6.2/utils/Makefile.in-256-
##############################################
m17n-docs-1.6.2/utils/Makefile.in-301-GTAGS:
m17n-docs-1.6.2/utils/Makefile.in:302:	here=`$(am__cd) $(top_builddir) && pwd` \
m17n-docs-1.6.2/utils/Makefile.in-303-	  && $(am__cd) $(top_srcdir) \
##############################################
m17n-docs-1.6.2/utils/Makefile.in-309-distdir: $(DISTFILES)
m17n-docs-1.6.2/utils/Makefile.in:310:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
m17n-docs-1.6.2/utils/Makefile.in:311:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
m17n-docs-1.6.2/utils/Makefile.in-312-	list='$(DISTFILES)'; \
##############################################
m17n-docs-1.6.2/utils/Makefile.in-323-	  if test -d $$d/$$file; then \
m17n-docs-1.6.2/utils/Makefile.in:324:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
m17n-docs-1.6.2/utils/Makefile.in-325-	    if test -d "$(distdir)/$$file"; then \
##############################################
m17n-docs-1.6.2/missing-139-       # Could not run --version or --help.  This is probably someone
m17n-docs-1.6.2/missing:140:       # running `$TOOL --version' or `$TOOL --help' to check whether
m17n-docs-1.6.2/missing-141-       # $TOOL exists and not knowing $TOOL uses missing.
##############################################
m17n-docs-1.6.2/missing-173-         from any GNU archive site."
m17n-docs-1.6.2/missing:174:    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
m17n-docs-1.6.2/missing-175-    test -z "$files" && files="config.h"
##############################################
m17n-docs-1.6.2/missing-202-         proper tools for further handling them.
m17n-docs-1.6.2/missing:203:         You can get \`$1' as part of \`Autoconf' from any GNU
m17n-docs-1.6.2/missing-204-         archive site."
m17n-docs-1.6.2/missing-205-
m17n-docs-1.6.2/missing:206:    file=`echo "$*" | sed -n "$sed_output"`
m17n-docs-1.6.2/missing:207:    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
m17n-docs-1.6.2/missing-208-    if test -f "$file"; then
##############################################
m17n-docs-1.6.2/missing-231-	*.y)
m17n-docs-1.6.2/missing:232:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
m17n-docs-1.6.2/missing-233-	    if test -f "$SRCFILE"; then
##############################################
m17n-docs-1.6.2/missing-235-	    fi
m17n-docs-1.6.2/missing:236:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
m17n-docs-1.6.2/missing-237-	    if test -f "$SRCFILE"; then
##############################################
m17n-docs-1.6.2/missing-261-	*.l)
m17n-docs-1.6.2/missing:262:	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
m17n-docs-1.6.2/missing-263-	    if test -f "$SRCFILE"; then
##############################################
m17n-docs-1.6.2/missing-280-
m17n-docs-1.6.2/missing:281:    file=`echo "$*" | sed -n "$sed_output"`
m17n-docs-1.6.2/missing:282:    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
m17n-docs-1.6.2/missing-283-    if test -f "$file"; then
##############################################
m17n-docs-1.6.2/missing-300-    # The file to touch is that specified with -o ...
m17n-docs-1.6.2/missing:301:    file=`echo "$*" | sed -n "$sed_output"`
m17n-docs-1.6.2/missing:302:    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
m17n-docs-1.6.2/missing-303-    if test -z "$file"; then
m17n-docs-1.6.2/missing-304-      # ... or it is the one specified with @setfilename ...
m17n-docs-1.6.2/missing:305:      infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
m17n-docs-1.6.2/missing-306-      file=`sed -n '
##############################################
m17n-docs-1.6.2/missing-312-      # ... or it is derived from the source name (dir/f.texi becomes f.info)
m17n-docs-1.6.2/missing:313:      test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
m17n-docs-1.6.2/missing-314-    fi
##############################################
m17n-docs-1.6.2/missing-336-	*o*)
m17n-docs-1.6.2/missing:337:	    firstarg=`echo "$firstarg" | sed s/o//`
m17n-docs-1.6.2/missing-338-	    tar "$firstarg" "$@" && exit 0
##############################################
m17n-docs-1.6.2/missing-342-	*h*)
m17n-docs-1.6.2/missing:343:	    firstarg=`echo "$firstarg" | sed s/h//`
m17n-docs-1.6.2/missing-344-	    tar "$firstarg" "$@" && exit 0
##############################################
m17n-docs-1.6.2/Makefile.in-78-	ps-recursive uninstall-recursive
m17n-docs-1.6.2/Makefile.in:79:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
m17n-docs-1.6.2/Makefile.in-80-am__vpath_adj = case $$p in \
m17n-docs-1.6.2/Makefile.in:81:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
m17n-docs-1.6.2/Makefile.in-82-    *) f=$$p;; \
m17n-docs-1.6.2/Makefile.in-83-  esac;
m17n-docs-1.6.2/Makefile.in:84:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
m17n-docs-1.6.2/Makefile.in-85-am__install_max = 40
m17n-docs-1.6.2/Makefile.in-86-am__nobase_strip_setup = \
m17n-docs-1.6.2/Makefile.in:87:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
m17n-docs-1.6.2/Makefile.in-88-am__nobase_strip = \
##############################################
m17n-docs-1.6.2/Makefile.in-123-  while test -n "$$dir1"; do \
m17n-docs-1.6.2/Makefile.in:124:    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
m17n-docs-1.6.2/Makefile.in-125-    if test "$$first" != "."; then \
m17n-docs-1.6.2/Makefile.in-126-      if test "$$first" = ".."; then \
m17n-docs-1.6.2/Makefile.in:127:        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
m17n-docs-1.6.2/Makefile.in:128:        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
m17n-docs-1.6.2/Makefile.in-129-      else \
m17n-docs-1.6.2/Makefile.in:130:        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
m17n-docs-1.6.2/Makefile.in-131-        if test "$$first2" = "$$first"; then \
m17n-docs-1.6.2/Makefile.in:132:          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
m17n-docs-1.6.2/Makefile.in-133-        else \
##############################################
m17n-docs-1.6.2/Makefile.in-138-    fi; \
m17n-docs-1.6.2/Makefile.in:139:    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
m17n-docs-1.6.2/Makefile.in-140-  done; \
##############################################
m17n-docs-1.6.2/Makefile.in-347-	@list='$(pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
m17n-docs-1.6.2/Makefile.in:348:	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
m17n-docs-1.6.2/Makefile.in-349-	test -n "$$files" || exit 0; \
##############################################
m17n-docs-1.6.2/Makefile.in-367-	dot_seen=no; \
m17n-docs-1.6.2/Makefile.in:368:	target=`echo $@ | sed s/-recursive//`; \
m17n-docs-1.6.2/Makefile.in-369-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
m17n-docs-1.6.2/Makefile.in-402-	rev="$$rev ."; \
m17n-docs-1.6.2/Makefile.in:403:	target=`echo $@ | sed s/-recursive//`; \
m17n-docs-1.6.2/Makefile.in-404-	for subdir in $$rev; do \
##############################################
m17n-docs-1.6.2/Makefile.in-480-GTAGS:
m17n-docs-1.6.2/Makefile.in:481:	here=`$(am__cd) $(top_builddir) && pwd` \
m17n-docs-1.6.2/Makefile.in-482-	  && $(am__cd) $(top_srcdir) \
##############################################
m17n-docs-1.6.2/Makefile.in-490-	test -d "$(distdir)" || mkdir "$(distdir)"
m17n-docs-1.6.2/Makefile.in:491:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
m17n-docs-1.6.2/Makefile.in:492:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
m17n-docs-1.6.2/Makefile.in-493-	list='$(DISTFILES)'; \
##############################################
m17n-docs-1.6.2/Makefile.in-504-	  if test -d $$d/$$file; then \
m17n-docs-1.6.2/Makefile.in:505:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
m17n-docs-1.6.2/Makefile.in-506-	    if test -d "$(distdir)/$$file"; then \
##############################################
m17n-docs-1.6.2/Makefile.in-612-	test -d $(distdir)/_build || exit 0; \
m17n-docs-1.6.2/Makefile.in:613:	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
m17n-docs-1.6.2/Makefile.in-614-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
##############################################
m17n-docs-1.6.2/Makefile.in-646-	@$(am__cd) '$(distuninstallcheck_dir)' \
m17n-docs-1.6.2/Makefile.in:647:	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
m17n-docs-1.6.2/Makefile.in-648-	   || { echo "ERROR: files left after uninstall:" ; \
##############################################
m17n-docs-1.6.2/Makefile.in-658-	fi
m17n-docs-1.6.2/Makefile.in:659:	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
m17n-docs-1.6.2/Makefile.in-660-	  || { echo "ERROR: files left in build directory after distclean:" ; \
##############################################
m17n-docs-1.6.2/Makefile.in-971-@MAINTAINER_MODE_TRUE@			utils/%_filter.rb m17n-lib.css
m17n-docs-1.6.2/Makefile.in:972:@MAINTAINER_MODE_TRUE@	rm -f `dirname $@`/*.html
m17n-docs-1.6.2/Makefile.in-973-@MAINTAINER_MODE_TRUE@	${DOXYGEN} $<
m17n-docs-1.6.2/Makefile.in:974:@MAINTAINER_MODE_TRUE@	cp images/icon-*.png `dirname $@`
m17n-docs-1.6.2/Makefile.in:975:@MAINTAINER_MODE_TRUE@	echo 'code { font-weight: bold }' >> `dirname $@`/doxygen.css
m17n-docs-1.6.2/Makefile.in-976-
##############################################
m17n-docs-1.6.2/Makefile.in-980-@MAINTAINER_MODE_TRUE@%/latex/refman.tex: doxyfile-latex.% ${SRCALL} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.in:981:@MAINTAINER_MODE_TRUE@	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.in-982-@MAINTAINER_MODE_TRUE@	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/Makefile.in-984-@MAINTAINER_MODE_TRUE@%/latex/m17n-lib.dvi: %/latex/refman.tex styles/m17n-lib.sty utils/latex.sh
m17n-docs-1.6.2/Makefile.in:985:@MAINTAINER_MODE_TRUE@	-utils/latex.sh `dirname $@`
m17n-docs-1.6.2/Makefile.in-986-
m17n-docs-1.6.2/Makefile.in-987-@MAINTAINER_MODE_TRUE@%/latex/m17n-lib.ps: %/latex/m17n-lib.dvi utils/dvips.sh
m17n-docs-1.6.2/Makefile.in:988:@MAINTAINER_MODE_TRUE@	utils/dvips.sh `dirname $@` dvips
m17n-docs-1.6.2/Makefile.in-989-#	emacs -batch -q -l utils/mokuji.el -f write-mokuji $@
##############################################
m17n-docs-1.6.2/Makefile.in-991-@MAINTAINER_MODE_TRUE@%/latex/m17n-lib.pdf: %/latex/m17n-lib.dvi
m17n-docs-1.6.2/Makefile.in:992:@MAINTAINER_MODE_TRUE@	cd `dirname $<`; dvipdfmx `basename $<`
m17n-docs-1.6.2/Makefile.in-993-
m17n-docs-1.6.2/Makefile.in-994-@MAINTAINER_MODE_TRUE@%/man/man1/m17n-config.1: doxyfile-man1.% ${MAN1} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.in:995:@MAINTAINER_MODE_TRUE@	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.in-996-@MAINTAINER_MODE_TRUE@	cp doxyfile-man1.usr temp
m17n-docs-1.6.2/Makefile.in-997-@MAINTAINER_MODE_TRUE@	${DOXYGEN} $<
m17n-docs-1.6.2/Makefile.in:998:@MAINTAINER_MODE_TRUE@	cd `dirname $@`; rm -f _*.1 *.c.1 *.txt.1
m17n-docs-1.6.2/Makefile.in-999-
m17n-docs-1.6.2/Makefile.in-1000-@MAINTAINER_MODE_TRUE@%/man/man3/m17nIntro.3m17n: doxyfile-man3.% ${MAN3} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.in:1001:@MAINTAINER_MODE_TRUE@	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.in-1002-@MAINTAINER_MODE_TRUE@	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/Makefile.in-1004-@MAINTAINER_MODE_TRUE@%/man/man5/mdbGeneral.5: doxyfile-man5.% ${MAN5} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.in:1005:@MAINTAINER_MODE_TRUE@	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.in-1006-@MAINTAINER_MODE_TRUE@	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/INSTALL-173-directory configuration variables that were expressed in terms of
m17n-docs-1.6.2/INSTALL:174:`${prefix}'.  Any directories that were specified during `configure',
m17n-docs-1.6.2/INSTALL-175-but not in terms of `${prefix}', must each be overridden at install
##############################################
m17n-docs-1.6.2/Makefile.am-287-			utils/%_filter.rb m17n-lib.css
m17n-docs-1.6.2/Makefile.am:288:	rm -f `dirname $@`/*.html
m17n-docs-1.6.2/Makefile.am-289-	${DOXYGEN} $<
m17n-docs-1.6.2/Makefile.am:290:	cp images/icon-*.png `dirname $@`
m17n-docs-1.6.2/Makefile.am:291:	echo 'code { font-weight: bold }' >> `dirname $@`/doxygen.css
m17n-docs-1.6.2/Makefile.am-292-
##############################################
m17n-docs-1.6.2/Makefile.am-296-%/latex/refman.tex: doxyfile-latex.% ${SRCALL} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.am:297:	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.am-298-	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/Makefile.am-300-%/latex/m17n-lib.dvi: %/latex/refman.tex styles/m17n-lib.sty utils/latex.sh
m17n-docs-1.6.2/Makefile.am:301:	-utils/latex.sh `dirname $@`
m17n-docs-1.6.2/Makefile.am-302-
m17n-docs-1.6.2/Makefile.am-303-%/latex/m17n-lib.ps: %/latex/m17n-lib.dvi utils/dvips.sh
m17n-docs-1.6.2/Makefile.am:304:	utils/dvips.sh `dirname $@` dvips
m17n-docs-1.6.2/Makefile.am-305-#	emacs -batch -q -l utils/mokuji.el -f write-mokuji $@
##############################################
m17n-docs-1.6.2/Makefile.am-307-%/latex/m17n-lib.pdf: %/latex/m17n-lib.dvi
m17n-docs-1.6.2/Makefile.am:308:	cd `dirname $<`; dvipdfmx `basename $<`
m17n-docs-1.6.2/Makefile.am-309-
m17n-docs-1.6.2/Makefile.am-310-%/man/man1/m17n-config.1: doxyfile-man1.% ${MAN1} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.am:311:	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.am-312-	cp doxyfile-man1.usr temp
m17n-docs-1.6.2/Makefile.am-313-	${DOXYGEN} $<
m17n-docs-1.6.2/Makefile.am:314:	cd `dirname $@`; rm -f _*.1 *.c.1 *.txt.1
m17n-docs-1.6.2/Makefile.am-315-
m17n-docs-1.6.2/Makefile.am-316-%/man/man3/m17nIntro.3m17n: doxyfile-man3.% ${MAN3} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.am:317:	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.am-318-	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/Makefile.am-320-%/man/man5/mdbGeneral.5: doxyfile-man5.% ${MAN5} utils/%_filter.rb
m17n-docs-1.6.2/Makefile.am:321:	rm -rf `dirname $@`
m17n-docs-1.6.2/Makefile.am-322-	${DOXYGEN} $<
##############################################
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-110-
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex:111:No problem. When the input method receives $<$i$>$, it inserts \char`\"{}I\char`\"{} in the preedit buffer. It knows that there is another rule that may match the additional key event $<$i$>$. So, after inserting \char`\"{}I\char`\"{}, it suspends the normal behavior of shifting to the initial condition, and waits for another key. Thus, the user sees \char`\"{}I\char`\"{} with underline, which indicates it is not yet committed.
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-112-
##############################################
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-118-
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex:119:The input method knows that there are no rules that match the $<$i$>$ $<$a$>$ key sequence. So, when it receives the next $<$a$>$, it executes the suspended behavior (i.e. shifting to the initial condition), which leads to commit \char`\"{}I\char`\"{}. Then the input method tries to handle $<$a$>$ in the current state, which leads to commit \char`\"{}A\char`\"{}.
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-120-
##############################################
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-181-
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex:182:Let's see what happens when the user types the key sequence $<$a$>$ $<$b$>$ $<$ $>$. Upon $<$a$>$, \char`\"{}A\char`\"{} is inserted into the buffer and the state shifts to {\ttfamily non-\/upcase}. So, the next $<$b$>$ is handled in the {\ttfamily non-\/upcase} state. As it matches a rule in the map {\ttfamily lower}, \char`\"{}b\char`\"{} is inserted in the preedit buffer and characters in the buffer (\char`\"{}Ab\char`\"{}) are committed explicitly by the \char`\"{}commit\char`\"{} command in BRANCH-\/ACTION. After that, the input method is still in the {\ttfamily non-\/upcase} state. So the next $<$ $>$ is also handled in {\ttfamily non-\/upcase}. For this time, no rule in this state matches it. Thus the branch {\ttfamily (nil (shift init))} is selected and the state is shifted to {\ttfamily init}. Please note that $<$ $>$ is not yet handled because the map {\ttfamily nil} does not consume any key event. So, the input method tries to handle it in the {\ttfamily init} state. Again no rule matches it. Therefore, that event is given back to the application program, which usually inserts a space for that.
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-183-
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-184-When you type \char`\"{}a quick blown fox\char`\"{} with this input method, you get \char`\"{}A
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex:185:Quick Blown Fox\char`\"{}. OK, you find a typo in \char`\"{}blown\char`\"{}, which should be \char`\"{}brown\char`\"{}. To correct it, you probably move the cursor after \char`\"{}l\char`\"{} and type $<$Backspace$>$ and $<$r$>$. However, if the current input method is still active, a capital \char`\"{}R\char`\"{} is inserted. It is not a sophisticated behavior.\subsection{Example of utilizing surrounding text support}\label{m17nDBTutorial_im-surrounding-text}
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-186-To make the input method work well also in such a case, we must use \char`\"{}surrounding text support\char`\"{}. It is a way to check characters around the inputting spot and delete them if necessary. Note that this facility is available only with Gtk+ applications and Qt applications. You cannot use it with applications that use XIM to communicate with an input method.
##############################################
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-270-
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex:271:(\char`\"{}def\char`\"{} is in the preedit buffer, two \char`\"{}$|$\char`\"{}s indicate borders between the preedit buffer and the surrounding text) and your current position in the preedit buffer is between \char`\"{}d\char`\"{} and \char`\"{}e\char`\"{}, you get these values:
m17n-docs-1.6.2/ja/latex/m17nDBTutorial.tex-272-
##############################################
m17n-docs-1.6.2/ja/latex/m17nDBFormat.tex-44-
##############################################
m17n-docs-1.6.2/ja/latex/Makefile-28-	      latex refman.tex ;\
m17n-docs-1.6.2/ja/latex/Makefile:29:	      latex_count=`expr $$latex_count - 1` ;\
m17n-docs-1.6.2/ja/latex/Makefile-30-	    done
##############################################
##############################################
m17n-docs-1.6.2/ja/latex/structMConverter.tex-48-
##############################################
m17n-docs-1.6.2/ja/latex/m17nExProg.tex-162-
##############################################
m17n-docs-1.6.2/configure-47-if test -z "$BASH_VERSION$ZSH_VERSION" \
m17n-docs-1.6.2/configure:48:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
m17n-docs-1.6.2/configure-49-  as_echo='print -r --'
m17n-docs-1.6.2/configure-50-  as_echo_n='print -rn --'
m17n-docs-1.6.2/configure:51:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
m17n-docs-1.6.2/configure-52-  as_echo='printf %s\n'
##############################################
m17n-docs-1.6.2/configure-54-else
m17n-docs-1.6.2/configure:55:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
m17n-docs-1.6.2/configure-56-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
m17n-docs-1.6.2/configure-64-	expr "X$arg" : "X\\(.*\\)$as_nl";
m17n-docs-1.6.2/configure:65:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
m17n-docs-1.6.2/configure-66-      esac;
##############################################
m17n-docs-1.6.2/configure-174-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
m17n-docs-1.6.2/configure:175:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
m17n-docs-1.6.2/configure-176-  if (eval "$as_required") 2>/dev/null; then :
##############################################
m17n-docs-1.6.2/configure-290-      case $as_dir in #(
m17n-docs-1.6.2/configure:291:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
m17n-docs-1.6.2/configure-292-      *) as_qdir=$as_dir;;
##############################################
m17n-docs-1.6.2/configure-355-  {
m17n-docs-1.6.2/configure:356:    as_val=`expr "$@" || test $? -eq 1`
m17n-docs-1.6.2/configure-357-  }
##############################################
m17n-docs-1.6.2/configure-362-# ---------------------------------
m17n-docs-1.6.2/configure:363:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
m17n-docs-1.6.2/configure-364-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
m17n-docs-1.6.2/configure-425-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
m17n-docs-1.6.2/configure:426:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
m17n-docs-1.6.2/configure-427-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
m17n-docs-1.6.2/configure-516-	esac;
m17n-docs-1.6.2/configure:517:	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
m17n-docs-1.6.2/configure-518-	???[sx]*):;;*)false;;esac;fi
##############################################
m17n-docs-1.6.2/configure-732-  case $ac_option in
m17n-docs-1.6.2/configure:733:  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
m17n-docs-1.6.2/configure-734-  *)	ac_optarg=yes ;;
##############################################
m17n-docs-1.6.2/configure-775-  -disable-* | --disable-*)
m17n-docs-1.6.2/configure:776:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
m17n-docs-1.6.2/configure-777-    # Reject names that are not valid shell variable names.
##############################################
m17n-docs-1.6.2/configure-780-    ac_useropt_orig=$ac_useropt
m17n-docs-1.6.2/configure:781:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
m17n-docs-1.6.2/configure-782-    case $ac_user_opts in
##############################################
m17n-docs-1.6.2/configure-801-  -enable-* | --enable-*)
m17n-docs-1.6.2/configure:802:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
m17n-docs-1.6.2/configure-803-    # Reject names that are not valid shell variable names.
##############################################
m17n-docs-1.6.2/configure-806-    ac_useropt_orig=$ac_useropt
m17n-docs-1.6.2/configure:807:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
m17n-docs-1.6.2/configure-808-    case $ac_user_opts in
##############################################
m17n-docs-1.6.2/configure-1005-  -with-* | --with-*)
m17n-docs-1.6.2/configure:1006:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
m17n-docs-1.6.2/configure-1007-    # Reject names that are not valid shell variable names.
##############################################
m17n-docs-1.6.2/configure-1010-    ac_useropt_orig=$ac_useropt
m17n-docs-1.6.2/configure:1011:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
m17n-docs-1.6.2/configure-1012-    case $ac_user_opts in
##############################################
m17n-docs-1.6.2/configure-1021-  -without-* | --without-*)
m17n-docs-1.6.2/configure:1022:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
m17n-docs-1.6.2/configure-1023-    # Reject names that are not valid shell variable names.
##############################################
m17n-docs-1.6.2/configure-1026-    ac_useropt_orig=$ac_useropt
m17n-docs-1.6.2/configure:1027:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
m17n-docs-1.6.2/configure-1028-    case $ac_user_opts in
##############################################
m17n-docs-1.6.2/configure-1059-  *=*)
m17n-docs-1.6.2/configure:1060:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
m17n-docs-1.6.2/configure-1061-    # Reject names that are not valid shell variable names.
##############################################
m17n-docs-1.6.2/configure-1080-if test -n "$ac_prev"; then
m17n-docs-1.6.2/configure:1081:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
m17n-docs-1.6.2/configure-1082-  as_fn_error "missing argument to $ac_option"
##############################################
m17n-docs-1.6.2/configure-1102-    */ )
m17n-docs-1.6.2/configure:1103:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
m17n-docs-1.6.2/configure-1104-      eval $ac_var=\$ac_val;;
##############################################
m17n-docs-1.6.2/configure-1139-ac_ls_di=`ls -di .` &&
m17n-docs-1.6.2/configure:1140:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
m17n-docs-1.6.2/configure-1141-  as_fn_error "working directory cannot be determined"
##############################################
m17n-docs-1.6.2/configure-1195-case $srcdir in
m17n-docs-1.6.2/configure:1196:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
m17n-docs-1.6.2/configure-1197-esac
##############################################
m17n-docs-1.6.2/configure-1238-By default, \`make install' will install all the files in
m17n-docs-1.6.2/configure:1239:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
m17n-docs-1.6.2/configure:1240:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
m17n-docs-1.6.2/configure-1241-for instance \`--prefix=\$HOME'.
##############################################
m17n-docs-1.6.2/configure-1327-*)
m17n-docs-1.6.2/configure:1328:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
m17n-docs-1.6.2/configure-1329-  # A ".." for each directory in $ac_dir_suffix.
m17n-docs-1.6.2/configure:1330:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
m17n-docs-1.6.2/configure-1331-  case $ac_top_builddir_sub in
##############################################
m17n-docs-1.6.2/configure-1501-    *\'*)
m17n-docs-1.6.2/configure:1502:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
m17n-docs-1.6.2/configure-1503-    esac
##############################################
m17n-docs-1.6.2/configure-1588-      case $ac_val in
m17n-docs-1.6.2/configure:1589:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
m17n-docs-1.6.2/configure-1590-      esac
##############################################
m17n-docs-1.6.2/configure-1605-	case $ac_val in
m17n-docs-1.6.2/configure:1606:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
m17n-docs-1.6.2/configure-1607-	esac
##############################################
m17n-docs-1.6.2/configure-1718-    set,)
m17n-docs-1.6.2/configure:1719:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
m17n-docs-1.6.2/configure:1720:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
m17n-docs-1.6.2/configure-1721-      ac_cache_corrupted=: ;;
##############################################
m17n-docs-1.6.2/configure-1729-	# differences in whitespace do not lead to failure.
m17n-docs-1.6.2/configure:1730:	ac_old_val_w=`echo x $ac_old_val`
m17n-docs-1.6.2/configure:1731:	ac_new_val_w=`echo x $ac_new_val`
m17n-docs-1.6.2/configure-1732-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
m17n-docs-1.6.2/configure-1749-    case $ac_new_val in
m17n-docs-1.6.2/configure:1750:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
m17n-docs-1.6.2/configure-1751-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
m17n-docs-1.6.2/configure-1918-if (
m17n-docs-1.6.2/configure:1919:   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
m17n-docs-1.6.2/configure-1920-   if test "$*" = "X"; then
m17n-docs-1.6.2/configure-1921-      # -L didn't work.
m17n-docs-1.6.2/configure:1922:      set X `ls -t "$srcdir/configure" conftest.file`
m17n-docs-1.6.2/configure-1923-   fi
##############################################
m17n-docs-1.6.2/configure-1954-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
m17n-docs-1.6.2/configure:1955:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
m17n-docs-1.6.2/configure-1956-
m17n-docs-1.6.2/configure-1957-# expand $ac_aux_dir to an absolute path
m17n-docs-1.6.2/configure:1958:am_aux_dir=`cd $ac_aux_dir && pwd`
m17n-docs-1.6.2/configure-1959-
##############################################
m17n-docs-1.6.2/configure-2099-	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
m17n-docs-1.6.2/configure:2100:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
m17n-docs-1.6.2/configure-2101-	     'mkdir (GNU coreutils) '* | \
##############################################
m17n-docs-1.6.2/configure-2178-set x ${MAKE-make}
m17n-docs-1.6.2/configure:2179:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
m17n-docs-1.6.2/configure-2180-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
##############################################
m17n-docs-1.6.2/configure-2188-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
m17n-docs-1.6.2/configure:2189:case `${MAKE-make} -f conftest.make 2>/dev/null` in
m17n-docs-1.6.2/configure-2190-  *@@@%%%=?*=@@@%%%*)
##############################################
m17n-docs-1.6.2/configure-2215-
m17n-docs-1.6.2/configure:2216:if test "`cd $srcdir && pwd`" != "`pwd`"; then
m17n-docs-1.6.2/configure-2217-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
m17n-docs-1.6.2/configure-2649-$as_echo_n "checking whether the C compiler works... " >&6; }
m17n-docs-1.6.2/configure:2650:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
m17n-docs-1.6.2/configure-2651-
##############################################
m17n-docs-1.6.2/configure-2693-	then :; else
m17n-docs-1.6.2/configure:2694:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
m17n-docs-1.6.2/configure-2695-	fi
##############################################
m17n-docs-1.6.2/configure-2754-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
m17n-docs-1.6.2/configure:2755:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
m17n-docs-1.6.2/configure-2756-	  break;;
##############################################
m17n-docs-1.6.2/configure-2863-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
m17n-docs-1.6.2/configure:2864:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
m17n-docs-1.6.2/configure-2865-       break;;
##############################################
m17n-docs-1.6.2/configure-3113-# Ignore all kinds of additional output from `make'.
m17n-docs-1.6.2/configure:3114:case `$am_make -s -f confmf 2> /dev/null` in #(
m17n-docs-1.6.2/configure-3115-*the\ am__doit\ target*)
##############################################
m17n-docs-1.6.2/configure-3123-   echo '.include "confinc"' > confmf
m17n-docs-1.6.2/configure:3124:   case `$am_make -s -f confmf 2> /dev/null` in #(
m17n-docs-1.6.2/configure-3125-   *the\ am__doit\ target*)
##############################################
m17n-docs-1.6.2/configure-3184-  if test "$am_compiler_list" = ""; then
m17n-docs-1.6.2/configure:3185:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
m17n-docs-1.6.2/configure-3186-  fi
##############################################
m17n-docs-1.6.2/configure-3500-  test $ac_status = 0; }; then
m17n-docs-1.6.2/configure:3501:  pkg_cv_M17N_CFLAGS=`$PKG_CONFIG --cflags "m17n-shell" 2>/dev/null`
m17n-docs-1.6.2/configure-3502-else
##############################################
m17n-docs-1.6.2/configure-3518-  test $ac_status = 0; }; then
m17n-docs-1.6.2/configure:3519:  pkg_cv_M17N_LIBS=`$PKG_CONFIG --libs "m17n-shell" 2>/dev/null`
m17n-docs-1.6.2/configure-3520-else
##############################################
m17n-docs-1.6.2/configure-3537-        if test $_pkg_short_errors_supported = yes; then
m17n-docs-1.6.2/configure:3538:	        M17N_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "m17n-shell"`
m17n-docs-1.6.2/configure-3539-        else
m17n-docs-1.6.2/configure:3540:	        M17N_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "m17n-shell"`
m17n-docs-1.6.2/configure-3541-        fi
##############################################
m17n-docs-1.6.2/configure-3870-'
m17n-docs-1.6.2/configure:3871:DEFS=`sed -n "$ac_script" confdefs.h`
m17n-docs-1.6.2/configure-3872-
##############################################
m17n-docs-1.6.2/configure-3878-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
m17n-docs-1.6.2/configure:3879:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
m17n-docs-1.6.2/configure-3880-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
m17n-docs-1.6.2/configure-3965-if test -z "$BASH_VERSION$ZSH_VERSION" \
m17n-docs-1.6.2/configure:3966:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
m17n-docs-1.6.2/configure-3967-  as_echo='print -r --'
m17n-docs-1.6.2/configure-3968-  as_echo_n='print -rn --'
m17n-docs-1.6.2/configure:3969:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
m17n-docs-1.6.2/configure-3970-  as_echo='printf %s\n'
##############################################
m17n-docs-1.6.2/configure-3972-else
m17n-docs-1.6.2/configure:3973:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
m17n-docs-1.6.2/configure-3974-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
m17n-docs-1.6.2/configure-3982-	expr "X$arg" : "X\\(.*\\)$as_nl";
m17n-docs-1.6.2/configure:3983:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
m17n-docs-1.6.2/configure-3984-      esac;
##############################################
m17n-docs-1.6.2/configure-4058-# ---------------------------------
m17n-docs-1.6.2/configure:4059:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
m17n-docs-1.6.2/configure-4060-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
m17n-docs-1.6.2/configure-4130-  {
m17n-docs-1.6.2/configure:4131:    as_val=`expr "$@" || test $? -eq 1`
m17n-docs-1.6.2/configure-4132-  }
##############################################
m17n-docs-1.6.2/configure-4234-      case $as_dir in #(
m17n-docs-1.6.2/configure:4235:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
m17n-docs-1.6.2/configure-4236-      *) as_qdir=$as_dir;;
##############################################
m17n-docs-1.6.2/configure-4291-	esac;
m17n-docs-1.6.2/configure:4292:	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
m17n-docs-1.6.2/configure-4293-	???[sx]*):;;*)false;;esac;fi
##############################################
m17n-docs-1.6.2/configure-4372-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
m17n-docs-1.6.2/configure:4373:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
m17n-docs-1.6.2/configure-4374-ac_cs_version="\\
##############################################
m17n-docs-1.6.2/configure-4397-  --*=*)
m17n-docs-1.6.2/configure:4398:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
m17n-docs-1.6.2/configure:4399:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
m17n-docs-1.6.2/configure-4400-    ac_shift=:
##############################################
m17n-docs-1.6.2/configure-4421-    case $ac_optarg in
m17n-docs-1.6.2/configure:4422:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
m17n-docs-1.6.2/configure-4423-    esac
##############################################
m17n-docs-1.6.2/configure-4542-fi
m17n-docs-1.6.2/configure:4543:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
m17n-docs-1.6.2/configure-4544-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
m17n-docs-1.6.2/configure-4559-  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
m17n-docs-1.6.2/configure:4560:ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
m17n-docs-1.6.2/configure-4561-ac_delim='%!_!# '
##############################################
m17n-docs-1.6.2/configure-4565-
m17n-docs-1.6.2/configure:4566:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
m17n-docs-1.6.2/configure-4567-  if test $ac_delim_n = $ac_delim_num; then
##############################################
m17n-docs-1.6.2/configure-4719-      esac
m17n-docs-1.6.2/configure:4720:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
m17n-docs-1.6.2/configure-4721-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
m17n-docs-1.6.2/configure-4778-*)
m17n-docs-1.6.2/configure:4779:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
m17n-docs-1.6.2/configure-4780-  # A ".." for each directory in $ac_dir_suffix.
m17n-docs-1.6.2/configure:4781:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
m17n-docs-1.6.2/configure-4782-  case $ac_top_builddir_sub in
##############################################
m17n-docs-1.6.2/configure-4839-/@mandir@/p'
m17n-docs-1.6.2/configure:4840:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
m17n-docs-1.6.2/configure-4841-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
m17n-docs-1.6.2/configure-4856-
m17n-docs-1.6.2/configure:4857:# Neutralize VPATH when `$srcdir' = `.'.
m17n-docs-1.6.2/configure-4858-# Shell code in configure.ac might set extrasub.
##############################################
m17n-docs-1.6.2/configure-4884-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
m17n-docs-1.6.2/configure:4885:  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
m17n-docs-1.6.2/configure:4886:  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
m17n-docs-1.6.2/configure-4887-  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
##############################################
m17n-docs-1.6.2/configure-4919-    # Strip MF so we end up with the name of the file.
m17n-docs-1.6.2/configure:4920:    mf=`echo "$mf" | sed -e 's/:.*$//'`
m17n-docs-1.6.2/configure-4921-    # Check whether this is an Automake generated Makefile or not.
##############################################
m17n-docs-1.6.2/configure-4956-    # from the Makefile without running `make'.
m17n-docs-1.6.2/configure:4957:    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
m17n-docs-1.6.2/configure-4958-    test -z "$DEPDIR" && continue
m17n-docs-1.6.2/configure:4959:    am__include=`sed -n 's/^am__include = //p' < "$mf"`
m17n-docs-1.6.2/configure-4960-    test -z "am__include" && continue
m17n-docs-1.6.2/configure:4961:    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
m17n-docs-1.6.2/configure-4962-    # When using ansi2knr, U may be empty or an underscore; expand it
m17n-docs-1.6.2/configure:4963:    U=`sed -n 's/^U = //p' < "$mf"`
m17n-docs-1.6.2/configure-4964-    # Find all dependency output files, they are included files with
##############################################
m17n-docs-1.6.2/install-sh-217-      fi
m17n-docs-1.6.2/install-sh:218:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
m17n-docs-1.6.2/install-sh-219-    *)
##############################################
m17n-docs-1.6.2/install-sh-269-      dstdir=$dst
m17n-docs-1.6.2/install-sh:270:      dst=$dstdir/`basename "$src"`
m17n-docs-1.6.2/install-sh-271-      dstdir_status=0
##############################################
m17n-docs-1.6.2/install-sh-351-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
m17n-docs-1.6.2/install-sh:352:		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
m17n-docs-1.6.2/install-sh-353-		   case $ls_ld_tmpdir in
##############################################
m17n-docs-1.6.2/install-sh-358-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
m17n-docs-1.6.2/install-sh:359:		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
m17n-docs-1.6.2/install-sh-360-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
m17n-docs-1.6.2/install-sh-418-	    case $prefix in
m17n-docs-1.6.2/install-sh:419:	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
m17n-docs-1.6.2/install-sh-420-	      *) qprefix=$prefix;;
##############################################
m17n-docs-1.6.2/install-sh-467-    if $copy_on_change &&
m17n-docs-1.6.2/install-sh:468:       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
m17n-docs-1.6.2/install-sh:469:       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
m17n-docs-1.6.2/install-sh-470-