branch: master
commit 2c1c3dac3ad48256fae422f591880b44baed6c0c
Author: Stephen Leake <[email protected]>
Commit: Stephen Leake <[email protected]>
In uniquify-files.el uniq-file-completion-table, fix compatibility with 25.3
---
packages/uniquify-files/uniquify-files.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/uniquify-files/uniquify-files.el
b/packages/uniquify-files/uniquify-files.el
index ed8b16c..d943053 100644
--- a/packages/uniquify-files/uniquify-files.el
+++ b/packages/uniquify-files/uniquify-files.el
@@ -1,12 +1,12 @@
;;; uniquify-files.el --- Completion style for files, minimizing directories
-*- lexical-binding:t -*-
;;
-;; Copyright (C) 2019 Free Software Foundation, Inc.
+;; Copyright (C) 2019, 2020 Free Software Foundation, Inc.
;;
;; Author: Stephen Leake <[email protected]>
;; Maintainer: Stephen Leake <[email protected]>
;; Keywords: completion table
;; uniquify
-;; Version: 1.0.2
+;; Version: 1.0.3
;; package-requires: ((emacs "25.0"))
;;
;; This file is part of GNU Emacs.
@@ -258,7 +258,7 @@ FILES is an alist of (UNIQIFIED-NAME . ABS-NAME).
Completion is
done on UNIQIFIED-NAME, PRED is called with ABS-NAME."
(cond
((eq action 'alist)
- (cdr (assoc string files #'string-equal)))
+ (cdr (assoc string files)))
((eq (car-safe action) 'boundaries)
;; We don't use boundaries; return the default definition.