]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't bind sort-fold-case when saving the custom-file
authorMauro Aranda <maurooaranda@gmail.com>
Tue, 13 Oct 2020 01:32:17 +0000 (03:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 13 Oct 2020 01:32:17 +0000 (03:32 +0200)
* lisp/cus-edit.el (custom-save-variables, custom-save-faces): These
functions sort a list, not buffer text, so they don't need
to use sort-fold-case at all.  Remove the let-binding for
sort-fold-case (bug#43919).

lisp/cus-edit.el

index 9c5d89f89ff1fcf3a883cf9a5f89820ae5333550..3c9375349580d061bb2869dacd32c9a2bd03d0b9 100644 (file)
@@ -4681,15 +4681,12 @@ This function does not save the buffer."
            (setq pos (line-beginning-position))))
        (goto-char pos)))))
 
-(defvar sort-fold-case) ; defined in sort.el
-
 (defun custom-save-variables ()
   "Save all customized variables in `custom-file'."
   (save-excursion
     (custom-save-delete 'custom-set-variables)
     (let ((standard-output (current-buffer))
-         (saved-list (make-list 1 0))
-         sort-fold-case)
+         (saved-list (make-list 1 0)))
       ;; First create a sorted list of saved variables.
       (mapatoms
        (lambda (symbol)
@@ -4771,8 +4768,7 @@ This function does not save the buffer."
     (custom-save-delete 'custom-reset-faces)
     (custom-save-delete 'custom-set-faces)
     (let ((standard-output (current-buffer))
-         (saved-list (make-list 1 0))
-         sort-fold-case)
+         (saved-list (make-list 1 0)))
       ;; First create a sorted list of saved faces.
       (mapatoms
        (lambda (symbol)