aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-19 04:26:35 +0000
committerRichard M. Stallman1995-01-19 04:26:35 +0000
commitb3e4518b089dbdebb8947536862cb2a7077dbcd9 (patch)
tree74bb707eefa99057a8ee020b52b81ee1f821dd93
parenteed5698bea36b5a87672c4e6bb64d3d0eefa3212 (diff)
downloademacs-b3e4518b089dbdebb8947536862cb2a7077dbcd9.tar.gz
emacs-b3e4518b089dbdebb8947536862cb2a7077dbcd9.zip
(move-to-left-margin): justification renamed to current-justification.
-rw-r--r--lisp/indent.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index 0f3c70ef366..131a5a48628 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -109,7 +109,7 @@ the text in this case."
109 (interactive "p") 109 (interactive "p")
110 (beginning-of-line n) 110 (beginning-of-line n)
111 (skip-chars-forward " \t") 111 (skip-chars-forward " \t")
112 (if (not (memq (justification) '(right center))) 112 (if (not (memq (current-justification) '(right center)))
113 (let ((cc (current-column)) 113 (let ((cc (current-column))
114 (lm (current-left-margin))) 114 (lm (current-left-margin)))
115 (cond ((> cc lm) 115 (cond ((> cc lm)