Przeglądaj źródła

Fix indentation

Ryan C. Thompson 11 lat temu
rodzic
commit
5f243b6ecb
1 zmienionych plików z 4 dodań i 5 usunięć
  1. 4 5
      ido-ubiquitous.el

+ 4 - 5
ido-ubiquitous.el

@@ -650,11 +650,10 @@ This function is used to determine whether a given function was
 \"called by\" `call-interactively' and therefore was called
 interactively."
   (when func
-(eq (symbol-function 'call-interactively)
-      (if (symbolp func)
-          (symbol-function func)
-        func)))
-)
+    (eq (symbol-function 'call-interactively)
+        (if (symbolp func)
+            (symbol-function func)
+          func))))
 
 (defun ido-ubiquitous--backtrace-from (fun)
   "Return all backtrace frames, starting with the one for FUN.