diff options
-rw-r--r-- | smart-documents.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/smart-documents.org b/smart-documents.org index ddc0591..2d26f3e 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -61,7 +61,7 @@ other appropriate element. (defun my/user-details-get () "Get user details." - (interactive t) + (interactive) (setq user-full-name (read-string "Enter full user name:")) (setq user-mail-address (read-string "Enter user e-mail address:")) (message "Successfully captured user details.")) @@ -139,8 +139,8 @@ We start the profiler now , and will interrupt it in Section [[Profiling---report]]. #+NAME: profiler-start -#+BEGIN_SRC emacs-lisp :tangle yes - ; (profiler-start) +#+BEGIN_SRC emacs-lisp :tangle no + (profiler-start) #+END_SRC ** Jumping to this file @@ -1248,7 +1248,7 @@ green in Org's LaTeX exports. Very stylish, much flair! :config (setq TeX-auto-save t)) - (auctex-latexmk-setup) + (auctex-latexmk-setup) #+END_SRC *** Groff export @@ -1401,7 +1401,7 @@ Binding defined in Section [[Indent buffer]]. #+BEGIN_SRC emacs-lisp :tangle yes (defun sd-delete-frame-or-kill-emacs () (interactive) - "delete frame; if sole frame, kill Emacs." + "Delete frame; if sole frame, kill Emacs." (if (> (length (frame-list)) 1) (delete-frame) (save-buffers-kill-terminal))) |