aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/fill.el1
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 47da6d77c90..d38aad95067 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-06-18 Chong Yidong <cyd@stupidchicken.com>
2
3 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
4
12011-06-09 Eli Zaretskii <eliz@gnu.org> 52011-06-09 Eli Zaretskii <eliz@gnu.org>
2 6
3 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind 7 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 044806ef5b0..8c2b54b05d8 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -1053,6 +1053,7 @@ The `justification' text-property can locally override this variable."
1053 (const full) 1053 (const full)
1054 (const center) 1054 (const center)
1055 (const none)) 1055 (const none))
1056 :safe 'symbolp
1056 :group 'fill) 1057 :group 'fill)
1057(make-variable-buffer-local 'default-justification) 1058(make-variable-buffer-local 'default-justification)
1058 1059