]> git.lyx.org Git - features.git/commitdiff
default to 100 not 10
authorJohn Levon <levon@movementarian.org>
Thu, 8 Aug 2002 15:42:54 +0000 (15:42 +0000)
committerJohn Levon <levon@movementarian.org>
Thu, 8 Aug 2002 15:42:54 +0000 (15:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4904 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/limited_stack.h

index 49675f7435b032d3a516150cefd4fe69c98c08af..27f70263addce45947e3a7ba964765bd2908aef1 100644 (file)
@@ -1,3 +1,7 @@
+2002-08-08  John Levon  <levon@movementarian.org>
+
+       * limited_stack.h: default to 100 not 10
 2002-08-01  John Levon  <levon@movementarian.org>
 
        * forkedcall.C: more details on error
index 8b709758a796d8b23bd2353184fc5cc473617578..14eef6e0c65dbbde96e278203c2faecbe6ec34d9 100644 (file)
@@ -26,7 +26,7 @@ public:
        typedef typename container_type::size_type size_type;
  
        /// limit is the maximum size of the stack
-       limited_stack(size_type limit = 10) {
+       limited_stack(size_type limit = 100) {
                limit_ = limit;
        }