emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 130b132: Quadruple term-buffer-maximum-size (Bug#37


From: Stefan Kangas
Subject: [Emacs-diffs] master 130b132: Quadruple term-buffer-maximum-size (Bug#37584)
Date: Mon, 7 Oct 2019 06:17:50 -0400 (EDT)

branch: master
commit 130b1321eda817727f361037b6c93d6a90bc0619
Author: Stefan Kangas <address@hidden>
Commit: Stefan Kangas <address@hidden>

    Quadruple term-buffer-maximum-size (Bug#37584)
    
    * lisp/term.el (term-buffer-maximum-size): Quadruple to 8192.
---
 lisp/term.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lisp/term.el b/lisp/term.el
index 43239d9..50a0c80 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -23,7 +23,7 @@
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
 
-;; Marck 13 2001
+;; March 13 2001
 ;; Fixes for CJK support by Yong Lu <address@hidden>.
 
 ;; Dir/Hostname tracking and ANSI colorization by
@@ -102,9 +102,8 @@
 ;;
 ;;             ----------------------------------------
 ;;
-;;  With the term-buffer-maximum-size you can finally decide how many
-;; scrollback lines to keep: its default is 2048 but you can change it as
-;; usual.
+;;  With the variable term-buffer-maximum-size you can decide how many
+;; scrollback lines to keep: its default is 8192.
 ;;
 ;;             ----------------------------------------
 ;;
@@ -800,14 +799,15 @@ Buffer local variable.")
   "Face used to render white color code."
   :group 'term)
 
-;; Inspiration came from comint.el -mm
-(defcustom term-buffer-maximum-size 2048
+(defcustom term-buffer-maximum-size 8192
   "The maximum size in lines for term buffers.
 Term buffers are truncated from the top to be no greater than this number.
 Notice that a setting of 0 means \"don't truncate anything\".  This variable
 is buffer-local."
   :group 'term
-  :type 'integer)
+  :type 'integer
+  :version "27.1")
+
 
 ;; Set up term-raw-map, etc.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]