diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-19 04:26:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-19 04:26:35 +0000 |
commit | b9cb248fe2fa261fed1f62399f107bba21de68cd (patch) | |
tree | 139a51b156caae7d8622b639a3bee463044cb79a /lisp | |
parent | 2058cfdc3d57c7e3aaecb81403821bfe96e2ed41 (diff) | |
download | emacs-b9cb248fe2fa261fed1f62399f107bba21de68cd.tar.gz |
(move-to-left-margin): justification renamed to current-justification.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/indent.el | 2 |
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." (interactive "p") (beginning-of-line n) (skip-chars-forward " \t") - (if (not (memq (justification) '(right center))) + (if (not (memq (current-justification) '(right center))) (let ((cc (current-column)) (lm (current-left-margin))) (cond ((> cc lm) |