diff options
| author | Oleh Krehel | 2015-01-28 10:07:54 +0100 |
|---|---|---|
| committer | Oleh Krehel | 2015-01-30 17:35:51 +0100 |
| commit | 58aa0dad3645cec66aa4bdda87cfd5f67f0a1e93 (patch) | |
| tree | 0da54a062a57dda10ef40d353c94371f32c34e0b | |
| parent | b1e3d14845517bfa9fa5d6d3840f3ab3160306fd (diff) | |
| download | emacs-58aa0dad3645cec66aa4bdda87cfd5f67f0a1e93.tar.gz emacs-58aa0dad3645cec66aa4bdda87cfd5f67f0a1e93.zip | |
lisp/custom.el (defface): Set indent to 1.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/custom.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f285288eb30..0c5d2fe5a83 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com> | 1 | 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com> |
| 2 | 2 | ||
| 3 | * lisp/custom.el (defface): Set `indent' to 1. | ||
| 4 | |||
| 5 | 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com> | ||
| 6 | |||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1. | 7 | * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1. |
| 4 | 8 | ||
| 5 | 2015-01-30 Michal Nazarewicz <mina86@mina86.com> | 9 | 2015-01-30 Michal Nazarewicz <mina86@mina86.com> |
diff --git a/lisp/custom.el b/lisp/custom.el index 779e585c04f..e5fe0ebaedd 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -411,7 +411,8 @@ In the ATTS property list, possible attributes are `:family', | |||
| 411 | 411 | ||
| 412 | See Info node `(elisp) Faces' in the Emacs Lisp manual for more | 412 | See Info node `(elisp) Faces' in the Emacs Lisp manual for more |
| 413 | information." | 413 | information." |
| 414 | (declare (doc-string 3)) | 414 | (declare (doc-string 3) |
| 415 | (indent 1)) | ||
| 415 | ;; It is better not to use backquote in this file, | 416 | ;; It is better not to use backquote in this file, |
| 416 | ;; because that makes a bootstrapping problem | 417 | ;; because that makes a bootstrapping problem |
| 417 | ;; if you need to recompile all the Lisp files using interpreted code. | 418 | ;; if you need to recompile all the Lisp files using interpreted code. |