unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#32037: simplify possessive form's "functions' definitions"
@ 2018-07-02 15:11 Van L
  2018-07-02 15:32 ` Eli Zaretskii
  0 siblings, 1 reply; 7+ messages in thread
From: Van L @ 2018-07-02 15:11 UTC (permalink / raw)
  To: 32037

diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index be3e938b24..82c49bf693 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -3028,7 +3028,7 @@ Primitive Functions
 @cindex Primitives written in C
 All functions are defined in terms of other functions, except for a few
 @dfn{primitive} functions that are written in the C programming
-language.  When you write functions' definitions, you will write them in
+language.  When you write function definitions, you will write them in
 Emacs Lisp and use other functions as your building blocks.  Some of the
 functions you will use will themselves be written in Emacs Lisp (perhaps
 by you) and some will be primitives written in C@.  The primitive
@@ -3179,7 +3179,7 @@ defun
 
 @findex * @r{(multiplication)}
 The third line of the example consists of the body of the function
-definition.  (Most functions' definitions, of course, are longer than
+definition.  (Most function definitions, of course, are longer than
 this.)  In this function, the body is the list, @code{(* 7 number)}, which
 says to multiply the value of @var{number} by 7.  (In Emacs Lisp,
 @code{*} is the function for multiplication, just as @code{+} is the






^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 15:11 bug#32037: simplify possessive form's "functions' definitions" Van L
@ 2018-07-02 15:32 ` Eli Zaretskii
  2018-07-02 15:35   ` Van L
  2018-07-02 19:59   ` Robert Pluim
  0 siblings, 2 replies; 7+ messages in thread
From: Eli Zaretskii @ 2018-07-02 15:32 UTC (permalink / raw)
  To: Van L; +Cc: 32037

> From: Van L <van@scratch.space>
> Date: Tue, 3 Jul 2018 01:11:00 +1000
> 
> diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
> index be3e938b24..82c49bf693 100644
> --- a/doc/lispintro/emacs-lisp-intro.texi
> +++ b/doc/lispintro/emacs-lisp-intro.texi
> @@ -3028,7 +3028,7 @@ Primitive Functions
>  @cindex Primitives written in C
>  All functions are defined in terms of other functions, except for a few
>  @dfn{primitive} functions that are written in the C programming
> -language.  When you write functions' definitions, you will write them in
> +language.  When you write function definitions, you will write them in
>  Emacs Lisp and use other functions as your building blocks.  Some of the
>  functions you will use will themselves be written in Emacs Lisp (perhaps
>  by you) and some will be primitives written in C@.  The primitive
> @@ -3179,7 +3179,7 @@ defun
>  
>  @findex * @r{(multiplication)}
>  The third line of the example consists of the body of the function
> -definition.  (Most functions' definitions, of course, are longer than
> +definition.  (Most function definitions, of course, are longer than
>  this.)  In this function, the body is the list, @code{(* 7 number)}, which
>  says to multiply the value of @var{number} by 7.  (In Emacs Lisp,
>  @code{*} is the function for multiplication, just as @code{+} is the

Thanks, but AFAIK the original wording is perfectly correct English
(if not more correct).  Why did you think it needed to be changed?





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 15:32 ` Eli Zaretskii
@ 2018-07-02 15:35   ` Van L
  2018-07-02 16:24     ` Eli Zaretskii
  2018-07-02 17:19     ` Glenn Morris
  2018-07-02 19:59   ` Robert Pluim
  1 sibling, 2 replies; 7+ messages in thread
From: Van L @ 2018-07-02 15:35 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 32037


> Thanks, but AFAIK the original wording is perfectly correct English
> (if not more correct).  Why did you think it needed to be changed?

Is it the correct Emacs’ or Emacs’s? which is recommended use?

The suggestion here is less pedantic.







^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 15:35   ` Van L
@ 2018-07-02 16:24     ` Eli Zaretskii
  2018-07-02 17:19     ` Glenn Morris
  1 sibling, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2018-07-02 16:24 UTC (permalink / raw)
  To: Van L; +Cc: 32037

> From: Van L <van@scratch.space>
> Date: Tue, 3 Jul 2018 01:35:23 +1000
> Cc: 32037@debbugs.gnu.org
> 
> 
> > Thanks, but AFAIK the original wording is perfectly correct English
> > (if not more correct).  Why did you think it needed to be changed?
> 
> Is it the correct Emacs’ or Emacs’s? which is recommended use?

I'm not sure, but "Emacs" is not necessarily plural, whereas
"functions" is.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 15:35   ` Van L
  2018-07-02 16:24     ` Eli Zaretskii
@ 2018-07-02 17:19     ` Glenn Morris
  1 sibling, 0 replies; 7+ messages in thread
From: Glenn Morris @ 2018-07-02 17:19 UTC (permalink / raw)
  To: Van L; +Cc: 32037

Van L wrote:

> Is it the correct Emacs' or Emacs's? which is recommended use?

admin/notes/documentation:

  ** To indicate possession, write Emacs's rather than Emacs'.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 15:32 ` Eli Zaretskii
  2018-07-02 15:35   ` Van L
@ 2018-07-02 19:59   ` Robert Pluim
  2018-07-04 16:40     ` Eli Zaretskii
  1 sibling, 1 reply; 7+ messages in thread
From: Robert Pluim @ 2018-07-02 19:59 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Van L, 32037

Eli Zaretskii <eliz@gnu.org> writes:

>>  @findex * @r{(multiplication)}
>>  The third line of the example consists of the body of the function
>> -definition.  (Most functions' definitions, of course, are longer than
>> +definition.  (Most function definitions, of course, are longer than
>>  this.)  In this function, the body is the list, @code{(* 7 number)}, which
>>  says to multiply the value of @var{number} by 7.  (In Emacs Lisp,
>>  @code{*} is the function for multiplication, just as @code{+} is the
>
> Thanks, but AFAIK the original wording is perfectly correct English
> (if not more correct).  Why did you think it needed to be changed?

The original is fine. I wish there was less going around changing
perfectly good sentences in our documentation (as opposed to editing
for clarity).

Robert





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#32037: simplify possessive form's "functions' definitions"
  2018-07-02 19:59   ` Robert Pluim
@ 2018-07-04 16:40     ` Eli Zaretskii
  0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2018-07-04 16:40 UTC (permalink / raw)
  To: Robert Pluim; +Cc: van, 32037-done

tags 32037 notabug
thanks

> From: Robert Pluim <rpluim@gmail.com>
> Cc: Van L <van@scratch.space>,  32037@debbugs.gnu.org
> Date: Mon, 02 Jul 2018 21:59:58 +0200
> 
> > Thanks, but AFAIK the original wording is perfectly correct English
> > (if not more correct).  Why did you think it needed to be changed?
> 
> The original is fine. I wish there was less going around changing
> perfectly good sentences in our documentation (as opposed to editing
> for clarity).

Agreed, closing.





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-07-04 16:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 15:11 bug#32037: simplify possessive form's "functions' definitions" Van L
2018-07-02 15:32 ` Eli Zaretskii
2018-07-02 15:35   ` Van L
2018-07-02 16:24     ` Eli Zaretskii
2018-07-02 17:19     ` Glenn Morris
2018-07-02 19:59   ` Robert Pluim
2018-07-04 16:40     ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).