diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-29 23:42:57 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-29 23:42:57 -0800 |
commit | ad78f432005af4100fb6be5bb015393f77e1fdfe (patch) | |
tree | 130b82cbd60a1bdb1da49a13b019424bb5fb3478 /lisp/hexl.el | |
parent | 566cb04bdfcf5177c9069120e628d5067086783f (diff) | |
download | emacs-ad78f432005af4100fb6be5bb015393f77e1fdfe.tar.gz |
Replace refs to obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'
* lisp/hexl.el (hexl-mode-hook):
* lisp/ielm.el (ielm-mode-hook):
* lisp/emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
(lisp-interaction-mode-hook):
* lisp/progmodes/cfengine.e (cfengine3-documentation-function):
Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
* lisp/emacs-lisp/eldoc.el: Same in commentary.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r-- | lisp/hexl.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el index e4e16225f18..dc63028b42b 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -1,7 +1,6 @@ ;;; hexl.el --- edit a file in a hex dump format using the hexl filter -*- lexical-binding: t -*- -;; Copyright (C) 1989, 1994, 1998, 2001-2014 Free Software Foundation, -;; Inc. +;; Copyright (C) 1989, 1994, 1998, 2001-2014 Free Software Foundation, Inc. ;; Author: Keith Gabryelski <ag@wheaties.ai.mit.edu> ;; Maintainer: FSF @@ -91,7 +90,7 @@ as that will override any bit grouping options set here." (defcustom hexl-mode-hook '(hexl-follow-line hexl-activate-ruler) "Normal hook run when entering Hexl mode." :type 'hook - :options '(hexl-follow-line hexl-activate-ruler turn-on-eldoc-mode) + :options '(hexl-follow-line hexl-activate-ruler eldoc-mode) :group 'hexl) (defface hexl-address-region |