Display the history of an issue (which currently is just opening and closing) inline with the issue's comments on the issue show page Change-Id: Id167bceef765cb4c24e86983d1dcd6624d0e5956 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1497 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
(defpackage #:klatre
 | 
						|
  (:documentation "Grab-bag utility library for Common Lisp")
 | 
						|
  (:use #:cl)
 | 
						|
  (:export
 | 
						|
   ;; Miscellanious utilities
 | 
						|
   #:comment #:posp
 | 
						|
 | 
						|
   ;; Sequence functions
 | 
						|
   #:chunk-list #:mapconcat
 | 
						|
 | 
						|
   ;; String handling
 | 
						|
   #:+dottime-format+ #:format-dottime
 | 
						|
   #:try-parse-integer
 | 
						|
 | 
						|
   ;; Function utilities
 | 
						|
   #:partial))
 |