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

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

[elpa] master 2c1c3da 1/2: In uniquify-files.el uniq-file-completion-tab


From: Stephen Leake
Subject: [elpa] master 2c1c3da 1/2: In uniquify-files.el uniq-file-completion-table, fix compatibility with 25.3
Date: Tue, 12 May 2020 18:26:24 -0400 (EDT)

branch: master
commit 2c1c3dac3ad48256fae422f591880b44baed6c0c
Author: Stephen Leake <address@hidden>
Commit: Stephen Leake <address@hidden>

    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 <address@hidden>
 ;; Maintainer: Stephen Leake <address@hidden>
 ;; 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]