From 013315f5eb40ff1e34d00d812183fe25fb9cbd66 Mon Sep 17 00:00:00 2001 From: Tim Perkins Date: Tue, 25 Jul 2023 12:26:04 -0400 Subject: [PATCH] Update dependencies for use of `cl-` functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using `cl-` functions requires Emacs 24.3 and the `cl-lib` package. Not having this was causing an issue were `cl-flet` was apparently not working correctly, which was causing error messages like: > buf-move-right: Symbol’s value as variable is void: settings Fixes #18 --- buffer-move.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/buffer-move.el b/buffer-move.el index 21e31cf..b77d1c7 100644 --- a/buffer-move.el +++ b/buffer-move.el @@ -8,8 +8,8 @@ ;; Mathis Hofer ;; Geyslan G. Bem ;; URL: https://github.com/lukhas/buffer-move/ -;; Version: 0.6.3 -;; Package-Requires: ((emacs "24.1")) +;; Version: 0.6.4 +;; Package-Requires: ((emacs "24.3")) ;; Keywords: convenience ;; This file is NOT part of GNU Emacs. @@ -74,8 +74,9 @@ ;;; Code: (require 'windmove) +(require 'cl-lib) -(defconst buffer-move-version "0.6.3" +(defconst buffer-move-version "0.6.4" "Version of buffer-move.el") (defgroup buffer-move nil