git.fiddlerwoaroof.com
Browse code

Added license

Few cosmetic changes

Paulo Madeira authored on 25/10/2013 22:00:00
Showing 1 changed files
... ...
@@ -1,6 +1,10 @@
1
-;;;; Copyright 2013 Paulo Madeira
1
+;;;; Copyright (C) 2013 Paulo Madeira
2
+;;;;
3
+;;;; This Source Code Form is subject to the terms of the Mozilla Public
4
+;;;; License, v. 2.0. If a copy of the MPL was not distributed with this
5
+;;;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
2 6
 
3
-;;;; Interface
7
+;;; Interface
4 8
 
5 9
 (cl:in-package #:cl-user)
6 10
 
... ...
@@ -18,14 +22,14 @@
18 22
 (in-package #:editor-color-theme)
19 23
 
20 24
 
21
-;;;; Configuration
25
+;;; Configuration
22 26
 
23 27
 (defvar *foreground-color* nil)
24 28
 
25 29
 (defvar *background-color* nil)
26 30
 
27 31
 
28
-;;;; Implementation
32
+;;; Implementation
29 33
 
30 34
 (defvar *all-color-themes* (make-hash-table :test 'string=))
31 35
 
... ...
@@ -238,5 +242,4 @@
238 242
 
239 243
 
240 244
 ;;; Show presence when loaded
241
-(pushnew :lw-editor-color-theme *features*)
242
-
245
+(pushnew :editor-color-theme *features*)