mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Standardize possessive apostrophe usage in manuals, docs, and comments
Ref: http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00649.html
This commit is contained in:
parent
a34baa83cc
commit
44e97401cd
86 changed files with 226 additions and 179 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2012-02-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* semantic/db.el (semanticdb-search-results-table):
|
||||
Doc fix (standardize possessive apostrophe usage).
|
||||
|
||||
2012-02-09 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* ede/auto.el (ede-directory-safe-p, ede-add-project-to-global-list):
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
;;; semantic.el --- Semantic buffer evaluator.
|
||||
|
||||
;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
||||
;; Keywords: syntax tools
|
||||
|
|
@ -623,7 +623,7 @@ was marked unparseable, then do nothing, and return the cache."
|
|||
|
||||
;;;; Parse the whole system.
|
||||
((semantic-parse-tree-needs-rebuild-p)
|
||||
;; Use Emacs' built-in progress-reporter
|
||||
;; Use Emacs's built-in progress-reporter
|
||||
(let ((semantic--progress-reporter
|
||||
(and (>= (point-max) semantic-minimum-working-buffer-size)
|
||||
(eq semantic-working-type 'percent)
|
||||
|
|
@ -762,7 +762,7 @@ This function returns semantic tags without overlays."
|
|||
;; Designated to ignore.
|
||||
(setq stream (car nontermsym))
|
||||
(if stream
|
||||
;; Use Emacs' built-in progress reporter:
|
||||
;; Use Emacs's built-in progress reporter:
|
||||
(and (boundp 'semantic--progress-reporter)
|
||||
semantic--progress-reporter
|
||||
(eq semantic-working-type 'percent)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
;;; semantic/db-el.el --- Semantic database extensions for Emacs Lisp
|
||||
|
||||
;;; Copyright (C) 2002-2012 Free Software Foundation, Inc.
|
||||
;;; Copyright (C) 2002-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
||||
;; Keywords: tags
|
||||
|
|
@ -132,7 +132,7 @@ For Emacs Lisp system DB, there isn't one."
|
|||
"Convert one TAG, originating from Emacs OBJ, into standardized form.
|
||||
If Emacs cannot resolve this symbol to a particular file, then return nil."
|
||||
;; Here's the idea. For each tag, get the name, then use
|
||||
;; Emacs' `symbol-file' to get the source. Once we have that,
|
||||
;; Emacs's `symbol-file' to get the source. Once we have that,
|
||||
;; we can use more typical semantic searching techniques to
|
||||
;; get a regularly parsed tag.
|
||||
(let* ((type (cond ((semantic-tag-of-class-p tag 'function)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
;;; semantic/db.el --- Semantic tag database manager
|
||||
|
||||
;; Copyright (C) 2000-2012 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2000-2012 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
||||
;; Keywords: tags
|
||||
|
|
@ -205,7 +205,7 @@ If one doesn't exist, create it."
|
|||
)
|
||||
"Table used for search results when there is no file or table association.
|
||||
Examples include search results from external sources such as from
|
||||
Emacs' own symbol table, or from external libraries.")
|
||||
Emacs's own symbol table, or from external libraries.")
|
||||
|
||||
(defmethod semanticdb-refresh-table ((obj semanticdb-search-results-table) &optional force)
|
||||
"If the tag list associated with OBJ is loaded, refresh it.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue