all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r109753: misc.el (forward-to-word, backward-to-word): Use (interactive "^p").
       [not found] <E1T4EYO-0001dM-G2@vcs.savannah.gnu.org>
@ 2012-08-23 12:30 ` Stefan Monnier
  2012-08-23 13:26   ` Bastien
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Monnier @ 2012-08-23 12:30 UTC (permalink / raw)
  To: Bastien Guerry; +Cc: emacs-devel

Please be careful with attributions: it's not your patch but Le Wang's,
so the ChangeLog should say

   2012-08-22  Le Wang  <can-remember@the.email>  (tiny change)
   
   	* misc.el (forward-to-word, backward-to-word): Activate or extend
   	the region under `shift-select-mode'.

-- Stefan


>>>>> "Bastien" == Bastien Guerry <bastien1@free.fr> writes:

> ------------------------------------------------------------
> revno: 109753
> committer: Bastien Guerry <bastien1@free.fr>
> branch nick: trunk
> timestamp: Wed 2012-08-22 19:12:35 +0200
> message:
>   misc.el (forward-to-word, backward-to-word): Use (interactive "^p").
  
>   Thanks to Le Wang for the patch.
> modified:
>   lisp/ChangeLog
>   lisp/misc.el

> === modified file 'lisp/ChangeLog'
> --- a/lisp/ChangeLog	2012-08-22 16:58:14 +0000
> +++ b/lisp/ChangeLog	2012-08-22 17:12:35 +0000
> @@ -1,4 +1,7 @@
> -2012-08-22  Bastien Guerry  <bzg@altern.org>
> +2012-08-22  Bastien Guerry  <bzg@gnu.org>
> +
> +	* misc.el (forward-to-word, backward-to-word): Activate or extend
> +	the region under `shift-select-mode'.
 
>  	* progmodes/executable.el (executable-prefix): Set to "#!" instead
>  	of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details

> === modified file 'lisp/misc.el'
> --- a/lisp/misc.el	2012-04-10 14:16:05 +0000
> +++ b/lisp/misc.el	2012-08-22 17:12:35 +0000
> @@ -99,14 +99,14 @@
>  (defun forward-to-word (arg)
>    "Move forward until encountering the beginning of a word.
>  With argument, do this that many times."
> -  (interactive "p")
> +  (interactive "^p")
>    (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg)
>        (goto-char (if (> arg 0) (point-max) (point-min)))))
 
>  (defun backward-to-word (arg)
>    "Move backward until encountering the end of a word.
>  With argument, do this that many times."
> -  (interactive "p")
> +  (interactive "^p")
>    (forward-to-word (- arg)))
 
>  ;;;###autoload


> _______________________________________________
> Emacs-diffs mailing list
> Emacs-diffs@gnu.org
> https://lists.gnu.org/mailman/listinfo/emacs-diffs



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

* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r109753: misc.el (forward-to-word, backward-to-word): Use (interactive "^p").
  2012-08-23 12:30 ` [Emacs-diffs] /srv/bzr/emacs/trunk r109753: misc.el (forward-to-word, backward-to-word): Use (interactive "^p") Stefan Monnier
@ 2012-08-23 13:26   ` Bastien
  0 siblings, 0 replies; 2+ messages in thread
From: Bastien @ 2012-08-23 13:26 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: emacs-devel

Stefan Monnier <monnier@iro.umontreal.ca> writes:

> Please be careful with attributions: it's not your patch but Le Wang's,
> so the ChangeLog should say
>
>    2012-08-22  Le Wang  <can-remember@the.email>  (tiny change)
>    
>    	* misc.el (forward-to-word, backward-to-word): Activate or extend
>    	the region under `shift-select-mode'.

Indeed, sorry that I overlooked this.

-- 
 Bastien



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

end of thread, other threads:[~2012-08-23 13:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <E1T4EYO-0001dM-G2@vcs.savannah.gnu.org>
2012-08-23 12:30 ` [Emacs-diffs] /srv/bzr/emacs/trunk r109753: misc.el (forward-to-word, backward-to-word): Use (interactive "^p") Stefan Monnier
2012-08-23 13:26   ` Bastien

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.