And I need to make these uppercase if I'm going to officially publish a book on the subject.
		
			
				
	
	
		
			11 lines
		
	
	
		
			189 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			189 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# -*- mode: snippet -*-
 | 
						|
# name: emacs-lisp-defun
 | 
						|
# key: <slf
 | 
						|
# --
 | 
						|
#+BEGIN_SRC emacs-lisp
 | 
						|
(defun ${1:fun} (${2:args})
 | 
						|
  "${3:docstring}"
 | 
						|
  ${4:(interactive${5: "${6:P}"})}
 | 
						|
  $0)  
 | 
						|
#+END_SRC
 |