Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12:GA
tcsh
tcsh-6.18.01-history-merge.dif
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File tcsh-6.18.01-history-merge.dif of Package tcsh
--- sh.hist.c +++ sh.hist.c 2013-10-15 17:04:45.518796367 +0000 @@ -107,7 +107,7 @@ hremove(struct Hist *hp) /* Prune length of history list to specified size by history variable. */ PG_STATIC void -discardExcess(int histlen) +discardExcess(int histlen, int mflg) { struct Hist *hp, *np; if (histTail == NULL) { @@ -124,7 +124,7 @@ discardExcess(int histlen) break; } while (histCount > (unsigned)histlen && (np = histTail) != &Histlist) { - if (eventno - np->Href >= histlen || histlen == 0) + if ((eventno - np->Href >= histlen || histlen == 0) && !mflg) hremove(np), hfree(np); else break; @@ -133,7 +133,7 @@ discardExcess(int histlen) return; /* don't bother doing the full scan */ for (hp = &Histlist; histCount > (unsigned)histlen && (np = hp->Hnext) != NULL;) - if (eventno - np->Href >= histlen || histlen == 0) + if (eventno - np->Href >= histlen || histlen == 0 || mflg) hremove(np), hfree(np); else hp = np; @@ -161,7 +161,7 @@ savehist( } if (sp) (void) enthist(++eventno, sp, 1, mflg, histlen); - discardExcess(histlen); + discardExcess(histlen, mflg); } #define USE_JENKINS_HASH 1
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor