branch: externals/auctex
commit ff8f183365e5a615070a2f684c35061b484f3ee4
Author: Arash Esbati <[email protected]>
Commit: Arash Esbati <[email protected]>

    ; * style/floatrow.el (LaTeX-floatrow-update-key-val-options): Use `setq' 
inside the loop.
---
 style/floatrow.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/style/floatrow.el b/style/floatrow.el
index bc358d1..4adc052 100644
--- a/style/floatrow.el
+++ b/style/floatrow.el
@@ -311,8 +311,8 @@
                            (setq temp (assq-delete-all (car (assoc x temp)) 
temp)))
                          temp)
                         ((string= key "floatrowsep")
-                         (setq temp (dolist (x sep-keys)
-                                      (assq-delete-all (car (assoc x temp)) 
temp)))
+                         (dolist (x sep-keys)
+                           (setq temp (assq-delete-all (car (assoc x temp)) 
temp)))
                          temp)
                         (t
                          (assq-delete-all (car (assoc key temp)) temp)))))

Reply via email to