diff --git a/src/workgroups-utils-basic.el b/src/workgroups-utils-basic.el index ce3e480ac14e712e969c805990c8940ef23152ae..e9c0698e4ffa1b20ee4753f5f6830c412342a218 100644 --- a/src/workgroups-utils-basic.el +++ b/src/workgroups-utils-basic.el @@ -37,15 +37,6 @@ Iterative to prevent stack overflow." ;;; bindings -(defmacro wg-if-let (cond-form then &rest else) - "Bind VAR to the return value of COND. If VAR is non-nil, do THEN. -Else do ELSE... - -\(fn ((VAR COND) THEN ELSE...)" - (declare (indent 2)) - `(let (,cond-form) - (if ,(car cond-form) ,then ,@else))) - (defmacro wg-when-let (binds &rest body) "Like `let*' but when all BINDS are non-nil - eval BODY." (declare (indent 1))