mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-07 12:20:50 +02:00
commit bash-20061019 snapshot
This commit is contained in:
+12
-4
@@ -8889,8 +8889,8 @@ Makefile.in
|
||||
- descend into `po' and run make recursively for the various clean
|
||||
targets
|
||||
|
||||
1/4
|
||||
---
|
||||
1/4/2004
|
||||
--------
|
||||
include/shmbutil.h
|
||||
- two new macros: BACKUP_CHAR(str, strsize, i), which backs up one
|
||||
multibyte character in STR starting at index I, and
|
||||
@@ -12718,8 +12718,8 @@ jobs.c
|
||||
- in delete_job, if find_last_proc returns NULL, don't try to call
|
||||
bgp_delete
|
||||
|
||||
1/7
|
||||
---
|
||||
1/7/2006
|
||||
--------
|
||||
doc/bash.1
|
||||
- patch from Tim Waugh to replace some literal single quotes with
|
||||
\(aq, the groff special character for it
|
||||
@@ -13756,3 +13756,11 @@ parse.y
|
||||
- change read_token_word to skip over `(' and `|' if PST_REGEXP is
|
||||
set, since those characters are legitimate regexp chars (but still
|
||||
parse matched pairs of parens)
|
||||
|
||||
10/16
|
||||
-----
|
||||
builtins/ulimit.def
|
||||
- add -e and -r to $SHORT_DOC usage string
|
||||
|
||||
po/ru.po
|
||||
- fix encoding; Russian text in the file is actually encoded in KOI8-R
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@ $PRODUCES ulimit.c
|
||||
$BUILTIN ulimit
|
||||
$FUNCTION ulimit_builtin
|
||||
$DEPENDS_ON !_MINIX
|
||||
$SHORT_DOC ulimit [-SHacdfilmnpqstuvx] [limit]
|
||||
$SHORT_DOC ulimit [-SHacdefilmnpqrstuvx] [limit]
|
||||
Ulimit provides control over the resources available to processes
|
||||
started by the shell, on systems that allow such control. If an
|
||||
option is given, it is interpreted as follows:
|
||||
|
||||
@@ -3433,9 +3433,9 @@ read_token_word (character)
|
||||
we need to special-case characters special to both the shell and
|
||||
regular expressions. Right now, that is only '(' and '|'. */ /*)*/
|
||||
if MBTEST((parser_state & PST_REGEXP) && (character == '(' || character == '|')) /*)*/
|
||||
{
|
||||
if (character == '|')
|
||||
goto got_character;
|
||||
{
|
||||
if (character == '|')
|
||||
goto got_character;
|
||||
|
||||
push_delimiter (dstack, character);
|
||||
ttok = parse_matched_pair (cd, '(', ')', &ttoklen, 0);
|
||||
@@ -3450,7 +3450,7 @@ read_token_word (character)
|
||||
FREE (ttok);
|
||||
dollar_present = all_digit_token = 0;
|
||||
goto next_character;
|
||||
}
|
||||
}
|
||||
#endif /* COND_REGEXP */
|
||||
|
||||
#ifdef EXTENDED_GLOB
|
||||
|
||||
+1
-1
@@ -25,6 +25,6 @@
|
||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||
looks for to find the patch level (for the sccs version string). */
|
||||
|
||||
#define PATCHLEVEL 0
|
||||
#define PATCHLEVEL 1
|
||||
|
||||
#endif /* _PATCHLEVEL_H_ */
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Last-Translator: Evgeniy Dushistov <dushistov@mail.ru>\n"
|
||||
"Language-Team: Russian <ru@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Type: text/plain; charset=KOI8-R\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
@@ -2557,4 +2557,3 @@ msgstr ""
|
||||
"ðÏËÁÚÙ×ÁÅÔ ×ÏÚÍÏÖÎÙÅ ÄÏÐÏÌÎÅÎÉÑ × ÚÁ×ÉÓÉÍÏÓÔÉ ÏÐÃÉÊ. ðÒÅÄÐÏÌÁÇÁÅÔÓÑ,\n"
|
||||
" ÞÔÏ ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ×ÎÕÔÒÉ ÆÕÎËÃÉÊ ËÏÍÁÎÄÎÏÇÏ ÉÎÔÅÒÐÒÅÔÁÔÏÒÁ, ÇÅÎÅÒÉÒÕÀÝÅÊ ×ÏÚÍÏÖÎÙÅ ÄÏÐÏÌÎÅÎÉÑ.\n"
|
||||
" åÓÌÉ ÎÅÏÂÑÚÁÔÅÌØÎÙÊ ÁÒÇÕÍÅÎÔ óìï÷ï ÂÙÌ ÉÓÐÏÌØÚÏ×ÁÎ, ÔÏ ÂÕÄÕÔ ÓÇÅÎÅÒÉÒÏ×ÁÎÙ ÔÏÌØËÏ ÓÏ×ÐÁÄÅÎÉÑ Ó óìï÷ï."
|
||||
|
||||
|
||||
Reference in New Issue
Block a user