emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master e59dc58 1/4: Fix arg out of range error


From: Artur Malabarba
Subject: [elpa] master e59dc58 1/4: Fix arg out of range error
Date: Thu, 23 Jul 2015 13:51:30 +0000

branch: master
commit e59dc5884844851377aafcb7e531c0c419729c12
Author: Artur Malabarba <address@hidden>
Commit: Artur Malabarba <address@hidden>

    Fix arg out of range error
---
 names.el |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/names.el b/names.el
index b5f403e..33f41a2 100644
--- a/names.el
+++ b/names.el
@@ -48,8 +48,9 @@
   (setq edebug-inhibit-emacs-lisp-mode-bindings t)
   ;; And the `C-xX' binds.
   (defvar global-edebug-prefix)
-  (when (or (null (boundp 'global-edebug-prefix))
-            (eq ?\C-x (elt global-edebug-prefix 0)))
+  (when (ignore-errors
+          (or (null (boundp 'global-edebug-prefix))
+              (eq ?\C-x (elt global-edebug-prefix 0))))
     (setq global-edebug-prefix "")))
 (require 'edebug)
 (require 'bytecomp)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]