Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8da4dd76
Commit
8da4dd76
authored
May 26, 2005
by
Nick Roberts
Browse files
*** empty log message ***
parent
9598ae53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
10 deletions
+27
-10
lisp/ChangeLog
lisp/ChangeLog
+18
-0
lisp/progmodes/gdb-ui.el
lisp/progmodes/gdb-ui.el
+9
-10
No files found.
lisp/ChangeLog
View file @
8da4dd76
2005-05-27 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gdb-ui.el (gdb-frame-address):
Rename from gdb-current-address.
(gdb-previous-frame-address): Rename from gdb-previous-address.
(gdb-selected-frame): Rename from gdb-current-frame.
(gdb-get-selected-frame): Rename from gdb-get-current-frame.
(gdb-frame-number): Rename from gdb-current-stack-level.
(gdb-ann3): Match new mode-name for disassembly buffer.
Extend initialisation of variables.
(gdb-post-prompt): Update disassembly from gdb-frame-handler.
(gdb-memory-mode): Use mouse-face in header line.
(gdb-assembler-buffer-name): Call it disassembly and give frame
in mode line.
(gdb-source-spec-regexp, gdb-assembler-custom)
(gdb-invalidate-assembler, gdb-frame-handler):
Make robust to leading zeroes in address format.
2005-05-26 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el: (org-mode): Use `define-derived-mode' to
...
...
lisp/progmodes/gdb-ui.el
View file @
8da4dd76
...
...
@@ -75,6 +75,7 @@
(
defvar
gdb-current-language
nil
)
(
defvar
gdb-var-list
nil
"List of variables in watch window."
)
(
defvar
gdb-var-changed
nil
"Non-nil means that gdb-var-list has changed."
)
(
defvar
gdb-main-file
nil
"Source file from which program execution begins."
)
(
defvar
gdb-buffer-type
nil
)
(
defvar
gdb-overlay-arrow-position
nil
)
(
defvar
gdb-server-prefix
nil
)
...
...
@@ -211,11 +212,18 @@ predefined macros."
:version "
22.1
")
(defcustom gdb-cpp-define-alist-flags ""
"
*
Preprocessor
flags
for
`
gdb-cpp-define-alist-program
'.
"
"
Preprocessor
flags
for
`
gdb-cpp-define-alist-program
'.
"
:type 'string
:group 'gud
:version "
22.1
")
(defcustom gdb-show-main nil
"
Non-nil
means
display
source
file
containing
the
main
routine
at
startup.
Also
display
the
main
routine
in
the
disassembly
buffer
if
present.
"
:type 'boolean
:group 'gud
:version "
22.1
")
(defvar gdb-define-alist nil "
Alist
of
#
define
directives
for
GUD
tooltips.
")
(defun gdb-create-define-alist ()
...
...
@@ -2137,15 +2145,6 @@ corresponding to the mode line clicked."
(gdb-display-buffer
(gdb-get-create-buffer 'gdba)))
(defvar gdb-main-file nil "Source file from which program execution begins.")
(defcustom gdb-show-main nil
"Non-nil means display source file containing the main routine at startup."
"Also display the main routine in the disassembly buffer if present."
:type 'boolean
:group 'gud
:version "22.1")
(defun gdb-set-window-buffer (name)
(set-window-buffer (selected-window) (get-buffer name))
(set-window-dedicated-p (selected-window) t))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment