]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
misc: gdb: cleanup comments
authorSimon Ruderich <simon@ruderich.org>
Sun, 15 Jul 2018 07:57:17 +0000 (09:57 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 15 Jul 2018 07:57:17 +0000 (09:57 +0200)
misc/gdb/gdbinit

index 01b5d8b9902b15e2cedfac2525dbff968ca5a53f..2c6b879078ac0e00743d1cc038bc5bfb572b09aa 100644 (file)
@@ -1,6 +1,6 @@
 # GDB (GNU debugger) configuration file.
 
-# Copyright (C) 2011-2012  Simon Ruderich
+# Copyright (C) 2011-2018  Simon Ruderich
 #
 # This file is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -16,9 +16,8 @@
 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
 
 
-# Save command history.
+# Save command history and increase size.
 set history save on
-# And save more entries.
 set history size 10000
 
 
@@ -27,7 +26,7 @@ set history size 10000
 set extended-prompt (\[\e[01;32m\]gdb\e[00m\]) 
 
 
-# Default output base is 16 (hex).
+# Set default output base to hex.
 set output-radix 16
 
 # Always disassemble next command/instruction. Very useful when debugging code