aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorStefan Monnier2013-01-03 21:53:48 -0500
committerStefan Monnier2013-01-03 21:53:48 -0500
commit4a74c818809349ea30ddb5b2e1498c9f8a08d37e (patch)
tree1ca2e5a8f29935bf5fa647c96954719ba6ec79d2 /src/fns.c
parent96dd18b1101638ddf0d38dfc3266888b225db26b (diff)
downloademacs-4a74c818809349ea30ddb5b2e1498c9f8a08d37e.tar.gz
emacs-4a74c818809349ea30ddb5b2e1498c9f8a08d37e.zip
* lisp/view.el (view--enable, view--disable): Rename from view-mode-enable
and view-mode-disable and assume it's called from view-mode. (view-mode-enable, view-mode-disable): Redefine as obsolete compatibility layer above view-mode. (view-mode-enter): Call `view-mode'. * lisp/files.el (after-find-file): Call `view-mode'.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 3beed018648..687c3f6ff39 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -86,7 +86,7 @@ Other values of LIMIT are ignored. */)
86 before it's time to do a QUIT. This must be a power of 2. */ 86 before it's time to do a QUIT. This must be a power of 2. */
87enum { QUIT_COUNT_HEURISTIC = 1 << 16 }; 87enum { QUIT_COUNT_HEURISTIC = 1 << 16 };
88 88
89/* Random data-structure functions */ 89/* Random data-structure functions. */
90 90
91DEFUN ("length", Flength, Slength, 1, 1, 0, 91DEFUN ("length", Flength, Slength, 1, 1, 0,
92 doc: /* Return the length of vector, list or string SEQUENCE. 92 doc: /* Return the length of vector, list or string SEQUENCE.