diff options
| author | Damien Cassou <damien@cassou.me> | 2019-11-26 21:11:52 +0100 |
|---|---|---|
| committer | Damien Cassou <damien@cassou.me> | 2019-11-26 21:11:52 +0100 |
| commit | 725daa8863255a91be1b36af3f050b1767ea879a (patch) | |
| tree | fa8a9d3d1ff2f5ac8d0c93a7e84febf154c3a62c /server | |
| parent | 29d9f4f5b1d295cce1be686201bcbda1a9e4b62e (diff) | |
Fix typos
Typos found with codespell.
Diffstat (limited to 'server')
| -rwxr-xr-x | server/autobuild | 2 | ||||
| -rw-r--r-- | server/configure.ac | 2 | ||||
| -rw-r--r-- | server/epdfinfo.c | 4 | ||||
| -rw-r--r-- | server/synctex_parser.h | 2 | ||||
| -rw-r--r-- | server/synctex_parser_readme.txt | 4 | ||||
| -rw-r--r-- | server/synctex_parser_utils.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/server/autobuild b/server/autobuild index aa6b54c..5e8db76 100755 --- a/server/autobuild +++ b/server/autobuild @@ -6,7 +6,7 @@ # Don't exit if some command fails. set +e -# Disalbe file globbing. +# Disable file globbing. set -f # Boolean variables are true if non-empty and false otherwise. diff --git a/server/configure.ac b/server/configure.ac index ae1255f..c2866b0 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -86,7 +86,7 @@ AC_LANG_PUSH([C]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #include <error.h> ],[error (0, 0, "");])], - [AC_DEFINE([HAVE_ERROR_H],1, [Define to 1 if error.h is useable.]) + [AC_DEFINE([HAVE_ERROR_H],1, [Define to 1 if error.h is usable.]) AC_MSG_RESULT([yes])], AC_MSG_RESULT([no])) AC_LANG_POP([C]) diff --git a/server/epdfinfo.c b/server/epdfinfo.c index 86d9200..93283ea 100644 --- a/server/epdfinfo.c +++ b/server/epdfinfo.c @@ -3581,7 +3581,7 @@ static const command_t commands [] = DEC_CMD2 (search_regexp, "search-regexp"), DEC_CMD2 (regexp_flags, "regexp-flags"), - /* General Informations */ + /* General Information */ DEC_CMD (metadata), DEC_CMD (outline), DEC_CMD2 (number_of_pages, "number-of-pages"), @@ -3592,7 +3592,7 @@ static const command_t commands [] = DEC_CMD (boundingbox), DEC_CMD (charlayout), - /* General Informations */ + /* General Information */ DEC_CMD (metadata), DEC_CMD (outline), DEC_CMD2 (number_of_pages, "number-of-pages"), diff --git a/server/synctex_parser.h b/server/synctex_parser.h index 2c1911e..24b5e2c 100644 --- a/server/synctex_parser.h +++ b/server/synctex_parser.h @@ -189,7 +189,7 @@ float synctex_scanner_magnification(synctex_scanner_t scanner); /* Managing the input file names. * Given a tag, synctex_scanner_get_name will return the corresponding file name. - * Conversely, given a file name, synctex_scanner_get_tag will retur, the corresponding tag. + * Conversely, given a file name, synctex_scanner_get_tag will return, the corresponding tag. * The file name must be the very same as understood by TeX. * For example, if you \input myDir/foo.tex, the file name is myDir/foo.tex. * No automatic path expansion is performed. diff --git a/server/synctex_parser_readme.txt b/server/synctex_parser_readme.txt index 0243f53..2064113 100644 --- a/server/synctex_parser_readme.txt +++ b/server/synctex_parser_readme.txt @@ -4,7 +4,7 @@ The Synchronization TeXnology named SyncTeX is a new feature of recent TeX engines designed by Jerome Laurens. It allows to synchronize between input and output, which means to navigate from the source document to the typeset material and vice versa. -More informations on http://itexmac2.sourceforge.net/SyncTeX.html +More information on http://itexmac2.sourceforge.net/SyncTeX.html This package is mainly for developers, it mainly contains the following files: @@ -16,7 +16,7 @@ synctex_parser_local.h synctex_parser.h synctex_parser.c -The file you are reading contains more informations about the SyncTeX parser history. +The file you are reading contains more information about the SyncTeX parser history. In order to support SyncTeX in a viewer, it is sufficient to include in the source the files synctex_parser.h and synctex_parser.c. diff --git a/server/synctex_parser_utils.c b/server/synctex_parser_utils.c index 0e9fd0e..f238550 100644 --- a/server/synctex_parser_utils.c +++ b/server/synctex_parser_utils.c @@ -253,7 +253,7 @@ int _synctex_copy_with_quoting_last_path_component(const char * src, char ** des const char * lpc; if(src && dest_ref) { # define dest (*dest_ref) - dest = NULL; /* Default behavior: no change and sucess. */ + dest = NULL; /* Default behavior: no change and success. */ lpc = _synctex_last_path_component(src); if(strlen(lpc)) { if(strchr(lpc,' ') && lpc[0]!='"' && lpc[strlen(lpc)-1]!='"') { |
