diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-04-22 15:49:21 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-04-22 15:49:21 +0000 |
commit | d1e0a26ecef7dc4f6e83b8307076cdf022d74c59 (patch) | |
tree | 4c8cb589bfe7bdb129fdc0edc32f4ddb978c425e | |
parent | 2cf3a7da9058f64178d2a384de126dcf1c2339f8 (diff) | |
download | gdb-d1e0a26ecef7dc4f6e83b8307076cdf022d74c59.tar.gz |
gdb/doc/
* gdb.texinfo (Auto-loading safe path): Replace @itemize @bullet
by @table @asis. Fix formatting of one item.
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 80c5576c220..455a145f166 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2012-04-22 Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdb.texinfo (Auto-loading safe path): Replace @itemize @bullet + by @table @asis. Fix formatting of one item. + 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb.texinfo (Auto-loading verbose mode): Fix smallexample typo. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 574809d9cf4..e8be74617f0 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -21136,8 +21136,8 @@ init file in the current directory To force @value{GDBN} to load the files it declined to load in the previous example, you could use one of the following ways: -@itemize @bullet -@item ~/.gdbinit: add-auto-load-safe-path ~/src/gdb +@table @asis +@item @file{~/.gdbinit}: @samp{add-auto-load-safe-path ~/src/gdb} Specify this trusted directory (or a file) as additional component of the list. You have to specify also any existing directories displayed by by @samp{show auto-load safe-path} (such as @samp{/usr:/bin} in this example). @@ -21155,20 +21155,20 @@ from trusted sources. During compilation of @value{GDBN} you may disable any auto-loading safety. This assumes all the files you will ever debug with this @value{GDBN} come from trusted sources. -@end itemize +@end table On the other hand you can also explicitly forbid automatic files loading which also suppresses any such warning messages: -@itemize @bullet +@table @asis @item @kbd{gdb -iex "set auto-load no" [@dots{}]} You can use @value{GDBN} command-line option for a single @value{GDBN} session. -@item @samp{~/.gdbinit}: @samp{set auto-load no} +@item @file{~/.gdbinit}: @samp{set auto-load no} Disable auto-loading globally for the user (@pxref{Home Directory Init File}). While it is improbable, you could also use system init file instead (@pxref{System-wide configuration}). -@end itemize +@end table This setting applies to the file names as entered by user. If no entry matches @value{GDBN} tries as a last resort to also resolve all the file names into |