diff options
| author | Bob Weiner <rsw@gnu.org> | 2016-08-15 19:08:49 -0400 |
|---|---|---|
| committer | Bob Weiner <rsw@gnu.org> | 2016-08-15 19:08:49 -0400 |
| commit | ddd114d7e6ca0221636ecd15b7aa7d34e4c19d54 (patch) | |
| tree | 59f8fd7661cf3bab6ba423ae5b79db3c69dc8422 /hyperbole.el | |
| parent | c5b6cb482e3eb4db86d445f4cd55d65f1cbdff2a (diff) | |
2016-08-12 Bob Weiner <rsw@gnu.org>
* hui-mini.el (hui:menu-enter): Fixed potential error of (wrong-type-argument char-or-string-p 134217741)
when insert was called with a non-character code integer.
2016-08-10 Bob Weiner <rsw@gnu.org>
* HY-ANNOUNCE-SHORT - Added as a shorter release announcement.
* HY-ABOUT, README, README.md, README.md.html - Synchronized with Hyperbole web home page
and typo fixes.
* hpath.el (hpath:external-open-office-suffixes): Added external display of
Open Office documents based on this new option.
(hpath:command-string): Quoted filename argument to allow spaces in filenames.
This fixed an issue when an external viewer such as `open' was called under OS X
and the filename to be opened contained spaces.
* hyperbole.el (Maintainer): Changed back to single line so ELPA parses it correctly.
* hib-debbugs.el (debbugs-gnu-query:list):
hyperbole.el (hkey-global-set-key, Info-directory-list):
hvar.el (var:append): Removed improper function quoting of variable.
==============================================================================
V6.0.3 changes ^^^^:
==============================================================================
Diffstat (limited to 'hyperbole.el')
| -rw-r--r-- | hyperbole.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/hyperbole.el b/hyperbole.el index 7a952ca..09afda4 100644 --- a/hyperbole.el +++ b/hyperbole.el @@ -3,8 +3,7 @@ ;; Copyright (C) 1992-2016 Free Software Foundation, Inc. ;; Author: Bob Weiner -;; Maintainer: Bob Weiner <rsw@gnu.org> -;; Mats Lidell <matsl@gnu.org> +;; Maintainer: Bob Weiner <rsw@gnu.org> and Mats Lidell <matsl@gnu.org> ;; Created: 06-Oct-92 at 11:52:51 ;; Released: 09-Aug-16 ;; Version: 6.0.2 @@ -196,7 +195,7 @@ Entry format is: (key-description key-sequence key-binding)." (hkey-bindings-keys hkey-previous-bindings))) (defun hkey-global-set-key (key command &optional no-add) - (or no-add (add-to-list #'hkey-previous-bindings (hkey-binding-entry key))) + (or no-add (add-to-list 'hkey-previous-bindings (hkey-binding-entry key))) (global-set-key key command)) (defun hkey-initialize () @@ -344,7 +343,7 @@ bindings after load)." #'(if (boundp 'hyperb:dir) (let ((info-dir (expand-file-name "man/" hyperb:dir))) (if (file-exists-p info-dir) - (add-to-list #'Info-directory-list info-dir))))) + (add-to-list 'Info-directory-list info-dir))))) ;;; ************************************************************************ ;;; Prevent local key maps from hiding the Action Key (overriding it) |
