[Emacs] Remove redundant functions

This commit is contained in:
Lucien Cartier-Tilet 2022-03-10 22:26:31 +01:00
parent de78e16bd9
commit 3cd50d88da
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 1 additions and 17 deletions

View File

@ -635,23 +635,7 @@ and ending with the extension of the requested TYPE."
(message filename)))
#+end_src
For conveniences sake, Ill also write two functions dedicated to
taking a screenshot in the SVG format and the PNG format respectively.
#+begin_src emacs-lisp
(defun self-screenshot-svg ()
"Save an SVG screenshot of Emacs.
See `self-screenshot'."
(interactive)
(self-screenshot 'svg))
(defun self-screenshot-png ()
"Save a PNG screenshot of Emacs.
See `self-screenshot'."
(interactive)
(self-screenshot 'png))
#+end_src
These functions were used to take the screenshots you can see in this
I used this function to take the screenshots you can see in this
document.
** Org Functions