Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
29929437
Commit
29929437
authored
Aug 04, 1992
by
Jim Blandy
Browse files
*** empty log message ***
parent
b5bb472e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
37 deletions
+15
-37
lisp/simple.el
lisp/simple.el
+15
-37
No files found.
lisp/simple.el
View file @
29929437
...
@@ -392,39 +392,21 @@ to get different commands to edit and resubmit."
...
@@ -392,39 +392,21 @@ to get different commands to edit and resubmit."
(setq minibuffer-history-variable 'minibuffer-history)
(setq minibuffer-history-variable 'minibuffer-history)
(setq minibuffer-history-position nil)
(setq minibuffer-history-position nil)
(
define-key
minibuffer-local-map
"\en"
'next-history-element
)
(mapcar
(
define-key
minibuffer-local-ns-map
"\en"
'next-history-element
)
(function (lambda (key-and-command)
(
define-key
minibuffer-local-ns-map
"\en"
'next-history-element
)
(mapcar
(
define-key
minibuffer-local-completion-map
"\en"
'next-history-element
)
(function (lambda (keymap)
(
define-key
minibuffer-local-completion-map
"\en"
'next-history-element
)
(define-key (symbol-value keymap)
(
define-key
minibuffer-local-must-match-map
"\en"
'next-history-element
)
(car key-and-command)
(cdr key-and-command))))
(
define-key
minibuffer-local-map
"\ep"
'previous-history-element
)
'(minibuffer-local-map
(
define-key
minibuffer-local-ns-map
"\ep"
'previous-history-element
)
minibuffer-local-ns-map
(
define-key
minibuffer-local-ns-map
"\ep"
'previous-history-element
)
minibuffer-local-completion-map
(
define-key
minibuffer-local-completion-map
"\ep"
'previous-history-element
)
minibuffer-local-must-match-map))))
(
define-key
minibuffer-local-completion-map
"\ep"
'previous-history-element
)
'(("\en" . next-history-element) ([next] . next-history-element)
(
define-key
minibuffer-local-must-match-map
"\ep"
'previous-history-element
)
("\ep" . previous-history-element) ([prior] . previous-history-element)
("\er" . previous-matching-history-element)
(
define-key
minibuffer-local-map
"\er"
'previous-matching-history-element
)
("\es" . next-matching-history-element)))
(
define-key
minibuffer-local-ns-map
"\er"
'previous-matching-history-element
)
(
define-key
minibuffer-local-ns-map
"\er"
'previous-matching-history-element
)
(
define-key
minibuffer-local-completion-map
"\er"
'previous-matching-history-element
)
(
define-key
minibuffer-local-completion-map
"\er"
'previous-matching-history-element
)
(
define-key
minibuffer-local-must-match-map
"\er"
'previous-matching-history-element
)
(
define-key
minibuffer-local-map
"\es"
'next-matching-history-element
)
(
define-key
minibuffer-local-ns-map
"\es"
'next-matching-history-element
)
(
define-key
minibuffer-local-ns-map
"\es"
'next-matching-history-element
)
(
define-key
minibuffer-local-completion-map
"\es"
'next-matching-history-element
)
(
define-key
minibuffer-local-completion-map
"\es"
'next-matching-history-element
)
(
define-key
minibuffer-local-must-match-map
"\es"
'next-matching-history-element
)
(put 'previous-matching-history-element 'enable-recursive-minibuffers t)
(put 'previous-matching-history-element 'enable-recursive-minibuffers t)
(defun previous-matching-history-element (regexp n)
(defun previous-matching-history-element (regexp n)
...
@@ -872,10 +854,6 @@ yanking point; just return the Nth kill forward."
...
@@ -872,10 +854,6 @@ yanking point; just return the Nth kill forward."
(let ((interprogram-paste (and (= n 0)
(let ((interprogram-paste (and (= n 0)
interprogram-paste-function
interprogram-paste-function
(funcall interprogram-paste-function))))
(funcall interprogram-paste-function))))
;;; RMS: Turn off the interprogram paste feature
;;; because currently it is wedged: it is always
;;; giving a null string.
(
setq
interprogram-paste
nil
)
(if interprogram-paste
(if interprogram-paste
(progn
(progn
;; Disable the interprogram cut function when we add the new
;; Disable the interprogram cut function when we add the new
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment