aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-04-08 14:56:28 +0000
committerTom Tromey <tromey@redhat.com>2013-04-08 14:56:28 +0000
commit2e97048ab2b59a9aa2205a52d774260295cc9f9c (patch)
tree182a5216bb1d3775ee78093577e18a8964a17b43 /binutils
parentf6de8ec2620da62f46cb4e3887b981677cdd9cdb (diff)
downloadfsf-binutils-gdb-2e97048ab2b59a9aa2205a52d774260295cc9f9c.zip
fsf-binutils-gdb-2e97048ab2b59a9aa2205a52d774260295cc9f9c.tar.gz
fsf-binutils-gdb-2e97048ab2b59a9aa2205a52d774260295cc9f9c.tar.bz2
* dwarf-mode.el: Bump version number.
(dwarf-mode): Remove autoload. (dwarf-die-reference): Relax regexp.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog6
-rw-r--r--binutils/dwarf-mode.el7
2 files changed, 9 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 1528836..1e4738c 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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>
PR binutils/15324
diff --git a/binutils/dwarf-mode.el b/binutils/dwarf-mode.el
index 49acaa1..c20c8d7 100644
--- a/binutils/dwarf-mode.el
+++ b/binutils/dwarf-mode.el
@@ -1,8 +1,8 @@
;;; 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
;; same terms:
@@ -98,7 +98,7 @@ A prefix argument means expand all children."
'action #'dwarf-die-button-action)
;; 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
;; children.
@@ -141,7 +141,6 @@ A prefix argument means expand all children."
(expand-file-name dwarf-file)))
(set-buffer-modified-p nil)))
-;;;###autoload
(define-derived-mode dwarf-mode special-mode "DWARF"
"Major mode for browsing DWARF output.