SHA256
1
0
forked from pool/tcsh
OBS User unknown 2008-10-08 16:41:22 +00:00 committed by Git OBS Bridge
parent e07db30557
commit f3cc3d257e
3 changed files with 9 additions and 2 deletions

View File

@ -10,7 +10,7 @@
+ Char *__restrict__ l = *v;
+ do {
+ int c;
+ if (!l || (c = TRM(*l)) != ' ' && c != '\t' && c != '\n')
+ if (!l || ((c = TRM(*l)) != ' ' && c != '\t' && c != '\n'))
+ break; /* strip blanks */
+ l++;
+ } while (*l);

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Oct 8 14:32:23 CEST 2008 - werner@suse.de
- Make code of last change unambiguous
-------------------------------------------------------------------
Mon Oct 6 16:09:36 CEST 2008 - werner@suse.de

View File

@ -26,7 +26,7 @@ Group: System/Shells
Requires: gawk textutils
AutoReqProv: on
Version: 6.15.00
Release: 89
Release: 90
Summary: The C SHell
Source: ftp.astron.com:/pub/tcsh/tcsh-6.15.00.tar.bz2
Source1: nls-iconv
@ -147,6 +147,8 @@ Authors:
%{_datadir}/locale/*/LC_MESSAGES/tcsh
%changelog
* Wed Oct 08 2008 werner@suse.de
- Make code of last change unambiguous
* Mon Oct 06 2008 werner@suse.de
- Avoid blanks at the beginning of command lists (bnc#431661)
* Fri Jun 13 2008 werner@suse.de