Remove unwanted function
This commit is contained in:
parent
d3b3c33753
commit
5cc8fb03ab
1 changed files with 0 additions and 10 deletions
|
@ -141,16 +141,6 @@ MODE1 is enabled and vice-versa."
|
|||
"Set the `disabled' property for each item in FUNCTIONS to nil."
|
||||
(mapc #'(lambda (f) (put f 'disabled nil)) functions))
|
||||
|
||||
(defun multiplication-table (number &optional upto)
|
||||
"Print a multiplication table of NUMBER up to UPTO."
|
||||
(interactive "nMultiplication table for: \nP")
|
||||
(let ((upto (or upto 10))
|
||||
(buffer (get-buffer-create "*Multiplication*")))
|
||||
(with-current-buffer buffer
|
||||
(erase-buffer)
|
||||
(cl-loop for i from 1 to upto do (insert (format "%5d: %d\n" i (* number i)))))
|
||||
(pop-to-buffer buffer)))
|
||||
|
||||
(defun oni:select-corresponding-ruby ()
|
||||
(when (and (not (projectile-rails--ignore-buffer-p))
|
||||
(projectile-rails-root))
|
||||
|
|
Loading…
Reference in a new issue