diff --git a/configure.ac b/configure.ac index f9b2cba..c99e248 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl FIXME: pick up from realgud.el -AC_INIT(realgud-lldb, 1.0,) +AC_INIT(realgud-lldb, 1.0.1,) AC_CONFIG_SRCDIR(lldb/lldb.el) AM_INIT_AUTOMAKE([foreign]) AM_MAINTAINER_MODE @@ -10,7 +10,7 @@ AC_ARG_WITH(emacs, AC_HELP_STRING([--with-emacs], AC_MSG_NOTICE("Checking emacs version") $EMACS -batch -q --no-site-file -eval \ - '(if (<= emacs-major-version 24) + '(if (< emacs-major-version 25) (progn (error "You need GNU Emacs 25 or later.") (kill-emacs 1) diff --git a/lldb/lldb.el b/lldb/lldb.el index 27d1232..fc8f390 100644 --- a/lldb/lldb.el +++ b/lldb/lldb.el @@ -20,7 +20,7 @@ (require-relative-list '("core" "track-mode") "realgud--lldb-") ;; This is needed, or at least the docstring part of it is needed to -;; get the customization menu to work in Emacs 24. +;; get the customization menu to work in Emacs 25. (defgroup realgud--lldb nil "The realgud interface to lldb" :group 'realgud diff --git a/realgud-lldb.el b/realgud-lldb.el index 6a5c59e..52605dc 100644 --- a/realgud-lldb.el +++ b/realgud-lldb.el @@ -1,8 +1,8 @@ ;;; realgud-lldb.el --- Realgud front-end to lldb -*- lexical-binding: t -*- ;; Author: Rocky Bernstein -;; Version: 1.0.0 -;; Package-Requires: ((load-relative "1.2") (cl-lib "0.5") (realgud "1.4.5") (emacs "24")) +;; Version: 1.0.1 +;; Package-Requires: ((load-relative "1.2") (cl-lib "0.5") (realgud "1.4.5") (emacs "25")) ;; URL: http://github.com/realgud/realgud-lldb ;; Compatibility: GNU Emacs 25.x