all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] fix/viper-undo 841dd0e: First attempt to fix viper undo bug #22295
       [not found] ` <20160516093356.E1686220155@vcs.savannah.gnu.org>
@ 2016-05-16 11:53   ` Stefan Monnier
  0 siblings, 0 replies; only message in thread
From: Stefan Monnier @ 2016-05-16 11:53 UTC (permalink / raw
  To: emacs-devel; +Cc: Phillip Lord

> +  (if (eq new-state 'emacs-state)
> +      (setq undo-auto-disable-boundaries nil)
> +    (setq undo-auto-disable-boundaries t))

Aka

    (setq undo-auto-disable-boundaries (if (eq new-state 'emacs-state)
                                           nil
                                         t))
aka
    (setq undo-auto-disable-boundaries (not (eq new-state 'emacs-state)))


-- Stefan



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-05-16 11:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20160516093356.24129.43941@vcs.savannah.gnu.org>
     [not found] ` <20160516093356.E1686220155@vcs.savannah.gnu.org>
2016-05-16 11:53   ` [Emacs-diffs] fix/viper-undo 841dd0e: First attempt to fix viper undo bug #22295 Stefan Monnier

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.