]> git.eshelyaron.com Git - emacs.git/commitdiff
Make old elide-head commands wrappers for mode
authorStefan Kangas <stefan@marxist.se>
Mon, 10 Jan 2022 03:28:33 +0000 (04:28 +0100)
committerStefan Kangas <stefan@marxist.se>
Mon, 10 Jan 2022 03:30:13 +0000 (04:30 +0100)
* lisp/elide-head.el (elide-head, elide-head-show): Make into
wrappers around elide-head-mode.

lisp/elide-head.el

index 837dca1afe4fa2ff9a3a6d73f6c8c9ffcb7ccef3..90bf1fe35b5ccbabdd9bb128f6ad1f3a684e3e4a 100644 (file)
@@ -154,14 +154,14 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks."
   (declare (obsolete elide-head-mode "29.1"))
   (interactive "P")
   (if arg
-      (elide-head--show)
-    (elide-head--hide)))
+      (elide-head-mode -1)
+    (elide-head-mode 1)))
 
 (defun elide-head-show ()
   "Show a header in the current buffer elided by \\[elide-head]."
   (declare (obsolete elide-head-mode "29.1"))
   (interactive)
-  (elide-head--show))
+  (elide-head-mode -1))
 
 (provide 'elide-head)