You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defunmulti-line (&optionalsingle-line)
"Multi-line the statement at point.When SINGLE-LINE is provided, single-line the statement at point instead."
(interactive"P")
(multi-line-execute multi-line-current-strategy single-line))
It also makes the single-line argument optional,
which makes it possible to call (multi-line) without any arguments,
from for example the Eval: (S-M-;) prompt.
The text was updated successfully, but these errors were encountered:
The
multi-line
function has a TODO note:https://github.com/IvanMalison/multi-line/blob/d5ae863ced0adeb7032ada398005f27a6c669d79/multi-line.el#L227-L234
A possible solution
This seems to make the bool casting obsolete:
It also makes the
single-line
argument optional,which makes it possible to call
(multi-line)
without any arguments,from for example the
Eval:
(S-M-;
) prompt.The text was updated successfully, but these errors were encountered: