Browse Source

Add missing progn in macro

This has no effect on existing tests, which never passed more than one
body form, but it might be important for anyone else who wants to use
this macro.
Ryan C. Thompson 9 years ago
parent
commit
039944faf0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/ido-ubiquitous-test.el

+ 1 - 1
test/ido-ubiquitous-test.el

@@ -72,7 +72,7 @@ end of input."
      (when (member (car C-g-key-sequence) key-sequence)
      (when (member (car C-g-key-sequence) key-sequence)
        (error "KEYS must include C-g"))
        (error "KEYS must include C-g"))
      (condition-case nil
      (condition-case nil
-         ,@body
+         (progn ,@body)
        (quit
        (quit
         (error "Reached end of simulated input while evaluating body")))))
         (error "Reached end of simulated input while evaluating body")))))