* dwarf-mode.el: Bump version number.
(dwarf-mode): Remove autoload. (dwarf-die-reference): Relax regexp.
This commit is contained in:
parent
f6de8ec262
commit
2e97048ab2
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2013-04-08 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* dwarf-mode.el: Bump version number.
|
||||||
|
(dwarf-mode): Remove autoload.
|
||||||
|
(dwarf-die-reference): Relax regexp.
|
||||||
|
|
||||||
2013-04-05 Alan Modra <amodra@gmail.com>
|
2013-04-05 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
PR binutils/15324
|
PR binutils/15324
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
;;; dwarf-mode.el --- Browser for DWARF information.
|
;;; dwarf-mode.el --- Browser for DWARF information.
|
||||||
|
|
||||||
;; Version: 1.1
|
;; Version: 1.2
|
||||||
|
|
||||||
;; Copyright (C) 2012 Free Software Foundation, Inc.
|
;; Copyright (C) 2012, 2013 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; This file is not part of GNU Emacs, but is distributed under the
|
;; This file is not part of GNU Emacs, but is distributed under the
|
||||||
;; same terms:
|
;; same terms:
|
||||||
|
@ -98,7 +98,7 @@ A prefix argument means expand all children."
|
||||||
'action #'dwarf-die-button-action)
|
'action #'dwarf-die-button-action)
|
||||||
|
|
||||||
;; Helper regexp to match a DIE reference.
|
;; Helper regexp to match a DIE reference.
|
||||||
(defconst dwarf-die-reference ": \\(<0x\\([0-9a-f]+\\)>\\)\\s *$")
|
(defconst dwarf-die-reference "\\(<0x\\([0-9a-f]+\\)>\\)")
|
||||||
|
|
||||||
;; Helper regexp to match a `...' indicating that there are hidden
|
;; Helper regexp to match a `...' indicating that there are hidden
|
||||||
;; children.
|
;; children.
|
||||||
|
@ -141,7 +141,6 @@ A prefix argument means expand all children."
|
||||||
(expand-file-name dwarf-file)))
|
(expand-file-name dwarf-file)))
|
||||||
(set-buffer-modified-p nil)))
|
(set-buffer-modified-p nil)))
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(define-derived-mode dwarf-mode special-mode "DWARF"
|
(define-derived-mode dwarf-mode special-mode "DWARF"
|
||||||
"Major mode for browsing DWARF output.
|
"Major mode for browsing DWARF output.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue