aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorRomain Francoise2005-09-24 23:26:28 +0000
committerRomain Francoise2005-09-24 23:26:28 +0000
commitce5a3ac01e1d22fe149978bd19bf7861ba116f62 (patch)
tree9f407de17683e30922fe3e0e54bc90d65a0bb4ae /lisp/progmodes
parent668414769aa92a7350bacab3c98507c3c1189e5c (diff)
downloademacs-ce5a3ac01e1d22fe149978bd19bf7861ba116f62.tar.gz
emacs-ce5a3ac01e1d22fe149978bd19bf7861ba116f62.zip
2005-09-25 Romain Francoise <romain@orebokech.com>
* dired-aux.el (dired-copy-file-recursive): * dired.el (dired-delete-file): * ediff-mult.el (ediff-dir-diff-copy-file): * ediff-util.el (ediff-test-save-region): * forms.el (forms-mode): * ido.el (ido-file-internal, ido-delete-file-at-head): * log-edit.el (log-edit-done): * ses.el (ses-yank-resize): * play/gomoku.el (gomoku-human-plays, gomoku) (gomoku-human-resigns, gomoku-prompt-for-other-game) (gomoku-offer-a-draw): * play/landmark.el (lm-human-resigns, lm): * net/eudcb-ldap.el (eudc-ldap-check-base): * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game): * progmodes/ebrowse.el (ebrowse-find-pattern): * progmodes/idlw-shell.el (idlwave-shell-set-bp-check): * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer): End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space. * vc.el (vc-delete-file): * play/gomoku.el (gomoku-terminate-game, gomoku) (gomoku-prompt-for-move, gomoku-human-takes-back): * play/landmark.el (lm-human-takes-back, lm-prompt-for-move) (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/ebrowse.el2
-rw-r--r--lisp/progmodes/idlw-shell.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el
index 49d0207882c..47e9a12f235 100644
--- a/lisp/progmodes/ebrowse.el
+++ b/lisp/progmodes/ebrowse.el
@@ -1798,7 +1798,7 @@ INFO is a list (TREE-HEADER TREE-OR-MEMBER MEMBER-LIST)."
1798 ;; START will be 0. 1798 ;; START will be 0.
1799 (when (and (boundp 'ebrowse-debug) 1799 (when (and (boundp 'ebrowse-debug)
1800 (symbol-value 'ebrowse-debug)) 1800 (symbol-value 'ebrowse-debug))
1801 (y-or-n-p (format "start = %d" start)) 1801 (y-or-n-p (format "start = %d? " start))
1802 (y-or-n-p pattern)) 1802 (y-or-n-p pattern))
1803 (setf found 1803 (setf found
1804 (loop do (goto-char (max (point-min) (- start offset))) 1804 (loop do (goto-char (max (point-min) (- start offset)))
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el
index 7dc12226722..4b646a72f3b 100644
--- a/lisp/progmodes/idlw-shell.el
+++ b/lisp/progmodes/idlw-shell.el
@@ -2462,7 +2462,7 @@ the problem with not being able to set the breakpoint."
2462 (beep) 2462 (beep)
2463 (y-or-n-p 2463 (y-or-n-p
2464 (concat "Okay to recompile file " 2464 (concat "Okay to recompile file "
2465 (idlwave-shell-bp-get bp 'file) " "))) 2465 (idlwave-shell-bp-get bp 'file) "? ")))
2466 ;; Recompile 2466 ;; Recompile
2467 (progn 2467 (progn
2468 ;; Clean up before retrying 2468 ;; Clean up before retrying