GNU nano 1.1.2 release

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@841 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-10-04 01:24:07 +00:00
parent 58a3353307
commit 03260b40fa
24 changed files with 4033 additions and 3276 deletions

View File

@ -1,4 +1,4 @@
CVS code -
nano-1.1.2 - 10/03/2001
- General
- Added BUGS #63 & 64. Fixes in search_init() and nanogetstr(),
new flag CLEAR_BACKUPSTRING because there's no easy way to
@ -27,7 +27,7 @@ CVS code -
- Call do_gotopos from do_alt_spell() to keep position
consistent when invoking alt speller (DLR).
- Readded DISABLE_CURPOS because in certain instances (like
all the "Search Wrapper" lines) the cursor position will
all the "Search Wrapped" lines) the cursor position will
be different yet we don't want the cursor position displayed.
- Take control-space out of -tiny build, unneeded.
- cut.c:

14
NEWS
View File

@ -1,3 +1,17 @@
10/03/2001 - GNU nano 1.1.2 is out there. Many new features in this
release, including support for auto-converting from
DOS and Mac formatted files, as well as toggles for
writing out files in these formats. Pico's -o flag has
been implemented, as has some new smooth scrolling code
(which can be used in place of the default jerky scrolling
behavior). Also, there is now a "find matching
bracket/brace/etc" feature (Meta-]). The .nanorc file
now accepts setting the tabsize, and the help text at the
bottom of the editor is now better spaced out in the
search/replace prompts. There are also the usual helping
of bugfixes, translation updates and, surely a bug or two.
You better get ready!
07/28/2001 - GNU nano 1.1.1 is released. Our second 1.1 unstable release
features many bugfixes from the initial release, in
particular fixs for the multibuffer code, and various

34
aclocal.m4 vendored
View File

@ -125,24 +125,6 @@ for am_file in <<$1>>; do
done<<>>dnl>>)
changequote([,]))])
#serial 1
# This test replaces the one in autoconf.
# Currently this macro should have the same name as the autoconf macro
# because gettext's gettext.m4 (distributed in the automake package)
# still uses it. Otherwise, the use in gettext.m4 makes autoheader
# give these diagnostics:
# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
undefine([AC_ISC_POSIX])
AC_DEFUN([AC_ISC_POSIX],
[
dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
]
)
#serial 19
dnl By default, many hosts won't let programs access large files;
@ -815,19 +797,15 @@ AC_SUBST($1)dnl
# Ulrich Drepper <drepper@cygnus.com>, 1996.
#
# This file can be copied and used freely without restrictions. It can
# be used in projects which are not available under the GNU General Public
# License or the GNU Library General Public License but which still want
# to provide support for the GNU gettext functionality.
# Please note that the actual code of the GNU gettext library is covered
# by the GNU Library General Public License, and the rest of the GNU
# gettext package package is covered by the GNU General Public License.
# They are *not* in the public domain.
# be used in projects which are not available under the GNU Public License
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
# serial 2
# serial 1
dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
AC_DEFUN([AM_PATH_PROG_WITH_TEST],
AC_DEFUN(AM_PATH_PROG_WITH_TEST,
[# Extract the first word of "$2", so it can be a program name with args.
set dummy $2; ac_word=[$]2
AC_MSG_CHECKING([for $ac_word])
@ -855,7 +833,7 @@ ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
;;
esac])dnl
$1="$ac_cv_path_$1"
if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
if test -n "[$]$1"; then
AC_MSG_RESULT([$]$1)
else
AC_MSG_RESULT(no)

View File

@ -1,4 +1,4 @@
/* config.h.in. Generated automatically from configure.in by autoheader 2.13. */
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define if using alloca.c. */
#undef C_ALLOCA
@ -31,6 +31,9 @@
/* Define to `long' if <sys/types.h> doesn't define. */
#undef off_t
/* Define if you need to in order for stat and other things to work. */
#undef _POSIX_SOURCE
/* Define as the return type of signal handlers (int or void). */
#undef RETSIGTYPE

441
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
# $Id$
dnl Process this file with autoconf to produce a configure script.
AC_INIT(nano.c)
AM_INIT_AUTOMAKE(nano, 1.1.1-cvs)
AM_INIT_AUTOMAKE(nano, 1.1.2)
AM_CONFIG_HEADER(config.h:config.h.in)
ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv no nl da"

View File

@ -203,7 +203,7 @@ nano was developed).</font></blockquote>
of nano?</font></h2>
<blockquote><font color="#330000">The current version of nano *should*
be 1.1.1.&nbsp; Of course you should always check the nano hompage to
be 1.1.2.&nbsp; Of course you should always check the nano hompage to
see what the latest and greatest version is.</font></blockquote>
<h2>
@ -396,7 +396,7 @@ try:
3.7. Tell me more about this multibuffer stuff!</font></h2>
<blockquote><font color="#330000"> To use multiple file buffers, you must
be using nano 1.1.1 or newer, and you must have configured nano with
be using nano 1.1.2 or newer, and you must have configured nano with
<b>--enable-multibuffer</b> or <b>--enable-extra</b> (use nano -V to check).
Then when you want to enable inserting a file into its own buffer instead of
into the current file, just hit <b>Meta-F</b>, then insert the file as normal
@ -416,7 +416,7 @@ buffer is open.
<blockquote><font color="#330000"> It's not hard at all! But, your version
of nano must have beem compiled with <b>--enable-nanorc</b>, and again must
be version 1.1.1 or newer (use nano -V to check your version and compiled
be version 1.1.2 or newer (use nano -V to check your version and compiled
features). Then simply copy the <b>nanorc.sample</b>
that came with the nano source or your nano package (most likely in
/usr/doc/nano) to .nanorc in your home directory. If you didn't get one,

View File

@ -3,7 +3,7 @@ Content-type: text/html
<HTML><HEAD><TITLE>Manpage of NANO</TITLE>
</HEAD><BODY>
<H1>NANO</H1>
Section: User Commands (1)<BR>Updated: April 30, 2001<BR><A HREF="#index">Index</A>
Section: User Commands (1)<BR>Updated: October 3, 2001<BR><A HREF="#index">Index</A>
<A HREF="http://localhost/cgi-bin/man/man2html">Return to Main Contents</A><HR>
@ -44,31 +44,44 @@ such as &quot;search and replace&quot; and &quot;goto line number&quot;.
<H2>OPTIONS</H2>
<DL COMPACT>
<DT><B>-D (--dos)</B>
<DD>
Write file in DOS format.
<DT><B>-F (--multibuffer)</B>
<DD>
Enable multiple file buffers (if available).
<DT><B>-T (--tabsize)</B>
<DT><B>-M (--mac)</B>
<DD>
Set the size (width) of a tab.
Write file in Mac format.
<DT><B>-R (--regexp)</B>
<DD>
Enable regular expression matching for search strings, as well as
\n subexpression replacement for replace strings, if available.
<DT><B>-S (--smooth)</B>
<DD>
Enable smooth scrolling. Text will scroll line-by-line, instead of the
usual chunk-by-chunk behaviour.
<DT><B>-T [num] (--tabsize=[num])</B>
<DD>
Set the size (width) of a tab.
<DT><B>-V (--version)</B>
<DD>
Show the current version number and author.
<DT><B>-h (--help)</B>
<DD>
Display a summary of command line options.
<DT><B>-c (--const)</B>
<DD>
Constantly show the cursor position.
<DT><B>-h (--help)</B>
<DD>
Display a summary of command line options.
<DT><B>-i (--autoindent)</B>
<DD>
@ -87,20 +100,24 @@ a new file, do not follow it. Good for editing files in /tmp, perhaps?
<DD>
Enable mouse support (if available for your system).
<DT><B>-o [dir] (--operatingdir=[dir])</B>
<DD>
Set operating directory. Makes nano set up something similar to a chroot.
<DT><B>-p (--pico)</B>
<DD>
Emulate Pico as closely as possible. This affects both the &quot;shortcut list&quot;
at the bottom of the screen, as well as the display and entry of previous
search and replace strings.
<DT><B>-r (--fill)</B>
<DT><B>-r [#cols] (--fill=[#cols])</B>
<DD>
Wrap lines at column #cols. By default, this is the width of the screen,
less eight. If this value is negative, wrapping will occur at #cols from
the right of the screen, allowing it to vary along with the screen width
if the screen is resized.
<DT><B>-s (--speller)</B>
<DT><B>-s [prog] (--speller=[prog])</B>
<DD>
Enable alternative spell checker command.
@ -124,7 +141,7 @@ Disable help screen at bottom of editor.
<DD>
Enable suspend ability.
<DT><B>-b, -e, -f</B>
<DT><B>-a, -b, -e, -f, -g, -j</B>
<DD>
Ignored, for compatibility with Pico.
@ -140,8 +157,9 @@ Nano will try to dump the buffer into an emergency file in some cases.
Mainly, this will happen if Nano receives a SIGHUP or runs out of
memory, when it will write the buffer into a file named &quot;nano.save&quot; if the
buffer didn't have a name already, or will add a &quot;.save&quot; suffix to the
current filename. Nano will <B>not</B> write this file if a previous one
exists in the current directory.
current filename. In multibuffer mode, nano will write all the open buffers to
the respective emergency files. Nano will <B>not</B> write this file if a
previous one exists in the current directory.
<A NAME="lbAG">&nbsp;</A>
<H2>BUGS</H2>
@ -166,7 +184,8 @@ subject of &quot;subscribe&quot;.
<A NAME="lbAI">&nbsp;</A>
<H2>AUTHOR</H2>
Chris Allegretta &lt;<A HREF="mailto:chrisa@asty.org">chrisa@asty.org</A>&gt;, et al (see AUTHORS for details).
Chris Allegretta &lt;<A HREF="mailto:chrisa@asty.org">chrisa@asty.org</A>&gt;, et al (see AUTHORS and THANKS for
details).
This manual page was originally written by Jordi Mallach
&lt;<A HREF="mailto:jordi@sindominio.net">jordi@sindominio.net</A>&gt;, for the Debian GNU/Linux system (but may be
used by others).
@ -188,6 +207,6 @@ used by others).
This document was created by
<A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
using the manual pages.<BR>
Time: 03:54:23 GMT, July 15, 2001
Time: 01:18:43 GMT, October 04, 2001
</BODY>
</HTML>

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 1.1.2pre3\n"
"POT-Creation-Date: 2001-10-03 12:11+0200\n"
"POT-Creation-Date: 2001-10-03 17:47-0400\n"
"PO-Revision-Date: 2001-10-03 12:11+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
@ -581,9 +581,9 @@ msgid ""
"commonly used shortcuts in the editor.\n"
"\n"
" The notation for shortcuts is as follows: Control-key sequences are notated "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-"
"key sequences are notated with the Meta (M) symbol and can be entered using "
"either the Esc, Alt or Meta key depending on your keyboard setup. The "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. "
"Escape-key sequences are notated with the Meta (M) symbol and can be entered "
"using either the Esc, Alt or Meta key depending on your keyboard setup. The "
"following keystrokes are available in the main editor window. Optional keys "
"are shown in parentheses:\n"
"\n"

391
po/cs.po

File diff suppressed because it is too large Load Diff

667
po/da.po

File diff suppressed because it is too large Load Diff

818
po/de.po

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 1.1.2pre3\n"
"POT-Creation-Date: 2001-10-03 12:09+0200\n"
"POT-Creation-Date: 2001-10-03 17:47-0400\n"
"PO-Revision-Date: 2001-10-03 12:09+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <es@li.org>\n"
@ -581,9 +581,9 @@ msgid ""
"commonly used shortcuts in the editor.\n"
"\n"
" The notation for shortcuts is as follows: Control-key sequences are notated "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-"
"key sequences are notated with the Meta (M) symbol and can be entered using "
"either the Esc, Alt or Meta key depending on your keyboard setup. The "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. "
"Escape-key sequences are notated with the Meta (M) symbol and can be entered "
"using either the Esc, Alt or Meta key depending on your keyboard setup. The "
"following keystrokes are available in the main editor window. Optional keys "
"are shown in parentheses:\n"
"\n"

View File

@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 1.1.2pre3\n"
"POT-Creation-Date: 2001-10-03 23:43+0200\n"
"POT-Creation-Date: 2001-10-03 17:47-0400\n"
"PO-Revision-Date: 2001-10-03 20:38+0300\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
@ -583,9 +583,9 @@ msgid ""
"commonly used shortcuts in the editor.\n"
"\n"
" The notation for shortcuts is as follows: Control-key sequences are notated "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-"
"key sequences are notated with the Meta (M) symbol and can be entered using "
"either the Esc, Alt or Meta key depending on your keyboard setup. The "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. "
"Escape-key sequences are notated with the Meta (M) symbol and can be entered "
"using either the Esc, Alt or Meta key depending on your keyboard setup. The "
"following keystrokes are available in the main editor window. Optional keys "
"are shown in parentheses:\n"
"\n"
@ -1013,8 +1013,8 @@ msgstr "Virhe tiedostossa %s rivill
#: rcfile.c:205
#, fuzzy, c-format
msgid "Error in %s on line %d: requested tab size %d too small"
msgstr "Virhe tiedostossa %s rivillä %d: haluttu sarkaimen koko %d on liian "
"pieni"
msgstr ""
"Virhe tiedostossa %s rivillä %d: haluttu sarkaimen koko %d on liian pieni"
#: rcfile.c:219
#, c-format

397
po/fr.po

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 1.1.2\n"
"POT-Creation-Date: 2001-10-03 12:14+0200\n"
"POT-Creation-Date: 2001-10-03 17:47-0400\n"
"PO-Revision-Date: 2001-10-03 12:37+0200\n"
"Last-Translator: Jacobo Tarrio <jtarrio@iname.com>\n"
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\n"
@ -580,9 +580,9 @@ msgid ""
"commonly used shortcuts in the editor.\n"
"\n"
" The notation for shortcuts is as follows: Control-key sequences are notated "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-"
"key sequences are notated with the Meta (M) symbol and can be entered using "
"either the Esc, Alt or Meta key depending on your keyboard setup. The "
"with a caret (^) symbol and are entered with the Control (Ctrl) key. "
"Escape-key sequences are notated with the Meta (M) symbol and can be entered "
"using either the Esc, Alt or Meta key depending on your keyboard setup. The "
"following keystrokes are available in the main editor window. Optional keys "
"are shown in parentheses:\n"
"\n"
@ -679,7 +679,8 @@ msgstr " -m \t\t--mouse\t\t\tEmprega-lo rato\n"
#: nano.c:455
msgid " -o [dir] \t--operatingdir=[dir]\tSet operating directory\n"
msgstr " -o [dir] \t--operatingdir=[dir]\tEstabrece-lo directorio de traballo\n"
msgstr ""
" -o [dir] \t--operatingdir=[dir]\tEstabrece-lo directorio de traballo\n"
#: nano.c:458
msgid " -p \t\t--pico\t\t\tEmulate Pico as closely as possible\n"
@ -1011,7 +1012,8 @@ msgstr ""
#: rcfile.c:205
#, c-format
msgid "Error in %s on line %d: requested tab size %d too small"
msgstr "Erro en %s na liña %d: o tamaño de tabulación solicitado %d é pequeno de máis"
msgstr ""
"Erro en %s na liña %d: o tamaño de tabulación solicitado %d é pequeno de máis"
#: rcfile.c:219
#, c-format

391
po/hu.po

File diff suppressed because it is too large Load Diff

669
po/id.po

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 1.1.2\n"
"POT-Creation-Date: 2001-10-02 20:12-0400\n"
"POT-Creation-Date: 2001-10-03 17:47-0400\n"
"PO-Revision-Date: 2001-10-03 20:27+02:00\n"
"Last-Translator: Marco Colombo <magicdice@inwind.it>\n"
"Language-Team: Italian <it@li.org>\n"
@ -1021,7 +1021,9 @@ msgstr "Errore in %s alla riga %d: riempimento richiesto %d troppo piccolo"
#: rcfile.c:205
#, c-format
msgid "Error in %s on line %d: requested tab size %d too small"
msgstr "Errore in %s alla riga %d: lunghezza della tabulazione richiesta %d troppo piccola"
msgstr ""
"Errore in %s alla riga %d: lunghezza della tabulazione richiesta %d troppo "
"piccola"
#: rcfile.c:219
#, c-format
@ -1271,14 +1273,14 @@ msgstr "e chiunque altro abbiamo dimenticato..."
msgid "Thank you for using nano!\n"
msgstr "Grazie per aver usato nano!\n"
msgid "Write"
msgstr "Salva"
#~ msgid "Write"
#~ msgstr "Salva"
msgid "Case Sensitive Regexp Search%s%s"
msgstr "Ricerca case sensitive epressioni regolari%s%s"
#~ msgid "Case Sensitive Regexp Search%s%s"
#~ msgstr "Ricerca case sensitive epressioni regolari%s%s"
msgid "Regexp Search%s%s"
msgstr "Ricerca espressioni regolari%s%s"
#~ msgid "Regexp Search%s%s"
#~ msgstr "Ricerca espressioni regolari%s%s"
msgid "Only %d lines available, skipping to last line"
msgstr "Solo %d righe disponibili, salto all'ultima"
#~ msgid "Only %d lines available, skipping to last line"
#~ msgstr "Solo %d righe disponibili, salto all'ultima"

665
po/nl.po

File diff suppressed because it is too large Load Diff

678
po/no.po

File diff suppressed because it is too large Load Diff

665
po/ru.po

File diff suppressed because it is too large Load Diff

686
po/sv.po

File diff suppressed because it is too large Load Diff

665
po/uk.po

File diff suppressed because it is too large Load Diff