From: Juanma Barranquero Date: Mon, 22 Jan 2007 15:04:05 +0000 (+0000) Subject: (hexl-mode-exit): Add missing quote. X-Git-Tag: emacs-pretest-22.0.93~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a30cc07b6eca46f5934942130834fb6db0bdac24;p=emacs.git (hexl-mode-exit): Add missing quote. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 85c023039be..c93fd214d02 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-22 Chris Moore (tiny change) + + * hexl.el (hexl-mode-exit): Add missing quote. + 2007-01-22 YAMAMOTO Mitsuharu * term/mac-win.el (mac-keyboard-modifier-mask-alist): New constant. @@ -26,8 +30,8 @@ 2007-01-21 Glenn Morris - * net/tramp.el (tramp-perl-encode, tramp-perl-decode): Update - copyrights. + * net/tramp.el (tramp-perl-encode, tramp-perl-decode): + Update copyrights. 2007-01-21 Alan Mackenzie @@ -66,14 +70,14 @@ 2007-01-20 Alan Mackenzie * progmodes/cc-defs.el (c-go-list-forward, c-go-list-backward): - new functions. + New functions. 2007-01-20 Alan Mackenzie * progmodes/cc-align.el, progmodes/cc-cmds.el, - progmodes/cc-defs.el, progmodes/cc-engine.el, - progmodes/cc-langs.el, progmodes/cc-styles.el, - progmodes/cc-vars.el: Add my name. + * progmodes/cc-defs.el, progmodes/cc-engine.el, + * progmodes/cc-langs.el, progmodes/cc-styles.el, + * progmodes/cc-vars.el: Add my name. 2007-01-20 Chong Yidong @@ -88,8 +92,8 @@ 2007-01-20 Alin C. Soare (tiny change) - * lisp/emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Fixed - cursor position when toggle abbreviated display. + * lisp/emacs-lisp/lisp-mode.el (last-sexp-toggle-display): + Fixed cursor position when toggle abbreviated display. 2007-01-20 Nick Roberts @@ -101,11 +105,10 @@ * type-break.el (type-break-demo-hanoi, type-break-demo-life) (type-break-demo-boring): Call read-event instead of read-char. -2007-01-19 Daniel Pfeiffer (small change) +2007-01-19 Daniel Pfeiffer (small change) * progmodes/compile.el: Add handling for makepplog. ->>>>>>> 1.10581 2007-01-19 Reiner Steib * textmodes/ispell.el (ispell-change-dictionary): Ensure that @@ -113,11 +116,11 @@ 2007-01-19 Chong Yidong - * progmodes/compile.el (compilation-loop): New arg limit. Handle - case where the first error is at point-min. + * progmodes/compile.el (compilation-loop): New arg limit. + Handle case where the first error is at point-min. (compilation-next-error): New arg to compilation-loop call. -2007-01-18 Bruno Haible (tiny change) +2007-01-18 Bruno Haible (tiny change) * info.el (Info-default-dirs): Change default info dir to share/info. @@ -147,7 +150,7 @@ * bookmark.el (bookmark-buffer-file-name): Abbreviate the bookmark path. Rewrite function in `cond' style for readability. - Suggested by: Stephen Eglen + Suggested by: Stephen Eglen . (The path shortening, that is, not the rearrarangement.) 2007-01-15 YAMAMOTO Mitsuharu @@ -175,8 +178,8 @@ 2007-01-13 Mathias Dahl - * tumme.el (tumme-cmd-rotate-original-options): Add -outfile - option. Remove redirect character ">". + * tumme.el (tumme-cmd-rotate-original-options): Add -outfile option. + Remove redirect character ">". 2007-01-13 Juanma Barranquero @@ -7433,8 +7436,8 @@ 2006-05-11 Reiner Steib * files.el, newcomment.el, outline.el, simple.el, - emacs-lisp/bytecomp.el, progmodes/cc-compat.el, - progmodes/cc-vars.el, progmodes/compile.el: + * emacs-lisp/bytecomp.el, progmodes/cc-compat.el, + * progmodes/cc-vars.el, progmodes/compile.el: Move `safe-local-variable' declarations to the respective files. * help-fns.el (describe-variable): Don't print safe-var if it is @@ -11358,7 +11361,7 @@ Sync with Tramp 2.0.52. * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el, - net/tramp-vc.el: Add code for unloading Tramp. See comment before + * net/tramp-vc.el: Add code for unloading Tramp. See comment before `tramp-unload-tramp' for checklist. * net/tramp.el: Require `timer-funcs' instead of `timer' if in diff --git a/lisp/hexl.el b/lisp/hexl.el index 35d68216162..f63ed0aafa5 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -283,7 +283,7 @@ You can use \\[hexl-find-file] to visit a file in Hexl mode. (setq font-lock-defaults '(hexl-font-lock-keywords t)) ;; Add hooks to rehexlify or dehexlify on various events. - (add-hook 'before-revert-hook 'hexl-before-revert-hook nil t) + (add-hook 'before-revert-hook 'hexl-before-revert-hook nil t) (add-hook 'after-revert-hook 'hexl-after-revert-hook nil t) (add-hook 'change-major-mode-hook 'hexl-maybe-dehexlify-buffer nil t) @@ -403,9 +403,9 @@ With arg, don't unhexlify buffer." (hl-line-mode 0)) (when (boundp 'hexl-mode-old-hl-line-range-function) (setq hl-line-range-function hexl-mode-old-hl-line-range-function)) - (when (boundp hexl-mode-old-hl-line-face) + (when (boundp 'hexl-mode-old-hl-line-face) (setq hl-line-face hexl-mode-old-hl-line-face)) - + (setq require-final-newline hexl-mode-old-require-final-newline) (setq mode-name hexl-mode-old-mode-name) (setq isearch-search-fun-function hexl-mode-old-isearch-search-fun-function)