diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/complete.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9b95a93e451..f24fb9d370c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-11-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * cedet/semantic/complete.el (semantic-complete-read-tag-engine) | ||
| 4 | (semantic-complete-jump-local, semantic-complete-jump): Improve | ||
| 5 | prompt string. | ||
| 6 | |||
| 1 | 2009-11-21 Jan Djärv <jan.h.d@swipnet.se> | 7 | 2009-11-21 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 8 | ||
| 3 | * cus-start.el (all): Add native condition for font-use-system-font. | 9 | * cus-start.el (all): Add native condition for font-use-system-font. |
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index 657bc4752b9..58453ec223c 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el | |||
| @@ -224,7 +224,7 @@ HISTORY is a symbol representing a variable to story the history in." | |||
| 224 | (if (string-match ":" prompt) | 224 | (if (string-match ":" prompt) |
| 225 | (setq prompt (concat | 225 | (setq prompt (concat |
| 226 | (substring prompt 0 (match-beginning 0)) | 226 | (substring prompt 0 (match-beginning 0)) |
| 227 | " (" default-as-string ")" | 227 | " (default " default-as-string ")" |
| 228 | (substring prompt (match-beginning 0)))) | 228 | (substring prompt (match-beginning 0)))) |
| 229 | (setq prompt (concat prompt " (" default-as-string "): ")))) | 229 | (setq prompt (concat prompt " (" default-as-string "): ")))) |
| 230 | ;; | 230 | ;; |
| @@ -1976,7 +1976,7 @@ completion works." | |||
| 1976 | (defun semantic-complete-jump-local () | 1976 | (defun semantic-complete-jump-local () |
| 1977 | "Jump to a semantic symbol." | 1977 | "Jump to a semantic symbol." |
| 1978 | (interactive) | 1978 | (interactive) |
| 1979 | (let ((tag (semantic-complete-read-tag-buffer-deep "Symbol: "))) | 1979 | (let ((tag (semantic-complete-read-tag-buffer-deep "Jump to symbol: "))) |
| 1980 | (when (semantic-tag-p tag) | 1980 | (when (semantic-tag-p tag) |
| 1981 | (push-mark) | 1981 | (push-mark) |
| 1982 | (goto-char (semantic-tag-start tag)) | 1982 | (goto-char (semantic-tag-start tag)) |
| @@ -1989,7 +1989,7 @@ completion works." | |||
| 1989 | (defun semantic-complete-jump () | 1989 | (defun semantic-complete-jump () |
| 1990 | "Jump to a semantic symbol." | 1990 | "Jump to a semantic symbol." |
| 1991 | (interactive) | 1991 | (interactive) |
| 1992 | (let* ((tag (semantic-complete-read-tag-project "Symbol: "))) | 1992 | (let* ((tag (semantic-complete-read-tag-project "Jump to symbol: "))) |
| 1993 | (when (semantic-tag-p tag) | 1993 | (when (semantic-tag-p tag) |
| 1994 | (push-mark) | 1994 | (push-mark) |
| 1995 | (semantic-go-to-tag tag) | 1995 | (semantic-go-to-tag tag) |