1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

Remove the use of a tab

This commit is contained in:
John Wiegley 2016-07-22 11:23:10 -07:00
parent 72452b5548
commit 4629e86240

View file

@ -298,7 +298,7 @@ This is in contrast to merely setting it to 0."
(let (p) (let (p)
(while plist (while plist
(if (not (eq property (car plist))) (if (not (eq property (car plist)))
(setq p (plist-put p (car plist) (nth 1 plist)))) (setq p (plist-put p (car plist) (nth 1 plist))))
(setq plist (cddr plist))) (setq plist (cddr plist)))
p)) p))