Having a general fill-column of 78 may look nice at first sight, but if the edited text gets indented a bit afterward (such as with git comments in 'git log'), it suddenly turns not so nice on a classic 80 columns terminal. A fill-column of 70 will serve us better. Reviewed-by: Rich Salz <rsalz@openssl.org>
		
			
				
	
	
		
			16 lines
		
	
	
		
			449 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			449 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
;;; This is an example of what a .dir-locals.el suitable for OpenSSL
 | 
						|
;;; development could look like.
 | 
						|
;;;
 | 
						|
;;; Apart from setting the CC mode style to "OpenSSL-II", it also
 | 
						|
;;; makes sure that tabs are never used for indentation in any file,
 | 
						|
;;; and that the fill column is 78.
 | 
						|
;;;
 | 
						|
;;; For more information see (info "(emacs) Directory Variables")
 | 
						|
 | 
						|
((nil
 | 
						|
  (indent-tabs-mode . nil)
 | 
						|
  (fill-column . 70)
 | 
						|
  )
 | 
						|
 (c-mode
 | 
						|
  (c-file-style . "OpenSSL-II")))
 |