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

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

[elpa] externals/uniquify-files 45a4eb3 21/22: In uniquify-files.el uniq


From: Stefan Monnier
Subject: [elpa] externals/uniquify-files 45a4eb3 21/22: In uniquify-files.el uniq-file-completion-table, fix compatibility with 25.3
Date: Tue, 1 Dec 2020 17:36:22 -0500 (EST)

branch: externals/uniquify-files
commit 45a4eb30f9dfc1f01a3a3c6489e67505511cb3cc
Author: Stephen Leake <stephen_leake@stephe-leake.org>
Commit: Stephen Leake <stephen_leake@stephe-leake.org>

    In uniquify-files.el uniq-file-completion-table, fix compatibility with 25.3
---
 uniquify-files.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/uniquify-files.el b/uniquify-files.el
index ed8b16c..d943053 100644
--- a/uniquify-files.el
+++ b/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 <stephen_leake@stephe-leake.org>
 ;; Maintainer: Stephen Leake <stephen_leake@stephe-leake.org>
 ;; 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.



reply via email to

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