1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix typos.

* lisp/finder.el (finder-unknown-keywords):
* lisp/progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
* lisp/progmodes/etags.el (tags-table-including): Fix typos in docstrings.

* lisp/cedet/semantic/lex.el (semantic-ignore-comments): Doc fix.

* lisp/cedet/semantic/symref/list.el (semantic-symref-list-rename-open-hits):
  Fix typo in error message.
  (semantic-symref-list-map-open-hits): Fix typo in docstring.

* lisp/org/org-agenda.el (org-agenda-hide-tags-regexp):
* lisp/org/org.el (org-refile-targets): Fix typos in docstrings.
This commit is contained in:
Juanma Barranquero 2010-09-25 14:04:35 +02:00
parent da43f02119
commit 40b1a3a937
22 changed files with 43 additions and 24 deletions

View file

@ -1,3 +1,11 @@
2010-09-25 Juanma Barranquero <lekktu@gmail.com>
* semantic/lex.el (semantic-ignore-comments): Doc fix.
* semantic/symref/list.el (semantic-symref-list-rename-open-hits):
Fix typo in error message.
(semantic-symref-list-map-open-hits): Fix typo in docstring.
2010-09-21 Eric Ludlam <zappo@gnu.org>
Synch SRecode to CEDET 1.0.

View file

@ -452,7 +452,7 @@ Do this by extracting the lowest directory name."
;; Targets and projects are often associated with other files, such as
;; header files, documentation files and the like. Have strong
;; associations can make useful user commands to quickly navigate
;; between the files base on their assocaitions.
;; between the files base on their associations.
;;
(defun ede-header-file ()
"Return the header file for the current buffer.

View file

@ -1810,8 +1810,8 @@ what syntax class CHAR has.")
(defvar semantic-ignore-comments t
"Default comment handling.
t means to strip comments when flexing. Nil means to keep comments
as part of the token stream.")
The value t means to strip comments when flexing; nil means
to keep comments as part of the token stream.")
(make-variable-buffer-local 'semantic-ignore-comments)
(defvar semantic-flex-enable-newlines nil

View file

@ -492,7 +492,7 @@ Closed items will be skipped."
(let ((count (semantic-symref-list-map-open-hits
(lambda () (replace-match newname nil t)))))
(semantic-symref-list-update-open-hits)
(message "Renamed %d occurances." count)))
(message "Renamed %d occurrences." count)))
;;; REFACTORING UTILITIES
;;
@ -501,7 +501,7 @@ Closed items will be skipped."
(defun semantic-symref-list-map-open-hits (function)
"For every open hit in the symref buffer, perform FUNCTION.
The `match-data' will be set to a successful hit of the searched for symbol.
Return the number of occurances FUNCTION was operated upon."
Return the number of occurrences FUNCTION was operated upon."
;; First Pass in this function - a straight rename.
;; Second Pass - Allow context specification based on

View file

@ -198,7 +198,7 @@ If SET-TO is a string, then replace the text of OLAID wit SET-TO."
(oset ir fields srecode-field-archive)
(setq srecode-field-archive nil)
;; Initailize myself first.
;; Initialize myself first.
(call-next-method)
)