summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-03-07 13:04:16 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2013-03-07 13:04:16 -0800
commit1ce537e99298bb61263534c9e16496d687ace526 (patch)
tree6030146e19fa38b1f7a2a919d3f02917ba59c514 /src/base
parent1a6354c22f930d6fadffcafe468f82d396ad409a (diff)
downloadabc-1ce537e99298bb61263534c9e16496d687ace526.tar.gz
abc-1ce537e99298bb61263534c9e16496d687ace526.tar.bz2
abc-1ce537e99298bb61263534c9e16496d687ace526.zip
Misc changes.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/cmd/cmdHist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/cmd/cmdHist.c b/src/base/cmd/cmdHist.c
index a9e2d18d..8275bc2e 100644
--- a/src/base/cmd/cmdHist.c
+++ b/src/base/cmd/cmdHist.c
@@ -47,8 +47,8 @@ ABC_NAMESPACE_IMPL_START
***********************************************************************/
void Cmd_HistoryAddCommand( Abc_Frame_t * p, const char * command )
{
- int nLastLooked = 10; // do not add history if the same entry appears among the last entries
- int nLastSaved = 500; // when saving a file, save no more than this number of last entries
+ int nLastLooked = 10; // do not add history if the same entry appears among the last entries
+ int nLastSaved = 1000; // when saving a file, save no more than this number of last entries
char Buffer[ABC_MAX_STR];
int Len;
if ( p->fBatchMode )