all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#27501: 24.5; hippie-expand-only-buffers not considered when buffer-local in 'try-expand-dabbrev-all-buffers
@ 2017-06-26 11:11 Tom
  0 siblings, 0 replies; only message in thread
From: Tom @ 2017-06-26 11:11 UTC (permalink / raw)
  To: 27501

[-- Attachment #1: Type: text/plain, Size: 3627 bytes --]

When I set the following in a mode
(https://github.com/TLINDEN/config-general-mode):

   (setq-local hippie-expand-only-buffers '(config-general-mode))

and have a .c file with c-mode open, and a file with config-general
mode, then 'try-expand-dabbrev-all-buffers expands from the .c file
as well, which is not what I expected.

It turns out, that the function (and all other try-expand-* functions
as well!) loops over all buffers in a while loop with 'set-buffer,
which then uses variables local for that *current* buffer or the
global ones, but not buffer-local variables from the original buffer,
from where the function was invoked. Since 'hippie-expand-only-buffers
is nil globally and not configured locally in c-mode (in my case),
it uses dabbrevs found in that file and thus ignores my buffer-local
setting.

The attached patch fixes this behavior by working on copies of the
relevant variables. It fixes 'try-expand-dabbrev-all-buffers only,
since I am not sure if the patch would be required by the other try
functions as well.



best regards,
Tom


In GNU Emacs 24.5.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.10.8)
 of 2015-06-15 on nubic
Windowing system distributor `The X.Org Foundation', version
11.0.11501000
System Description: Ubuntu 14.04.4 LTS

Configured using:
 `configure --with-xpm=no --with-jpeg=no --with-gif=no --with-tiff=no'

Important settings:
  value of $LC_MONETARY: de_DE.UTF-8
  value of $LC_NUMERIC: de_DE.UTF-8
  value of $LC_TIME: de_DE.UTF-8
  value of $LANG: en_US.UTF-8
  value of $XMODIFIERS: @im=ibus
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  ido-everywhere: t
  show-paren-mode: t
  tooltip-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  column-number-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Making completion list... [2 times]
current-kill: Kill ring is empty

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev
gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util
help-fns mail-prsvr mail-utils help-mode easymenu ido edmacro kmacro
cl-loaddefs cl-lib paren time-date tooltip electric uniquify ediff-hook
vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image
regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register
page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock
font-lock syntax facemenu font-core frame cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew
greek romanian slovak czech european ethiopic indian cyrillic chinese
case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice
loaddefs button faces cus-face macroexp files text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote make-network-process dbusbind
gfilenotify dynamic-setting system-font-setting font-render-setting
move-toolbar gtk x-toolkit x multi-tty emacs
)

Memory information:
((conses 16 87889 34583)
 (symbols 48 18533 1)
 (miscs 40 52 172)
 (strings 32 18602 28208)
 (string-bytes 1 447810)
 (vectors 16 9991)
 (vector-slots 8 397326 31713)
 (floats 8 76 172)
 (intervals 56 233 101)
 (buffers 960 12)
 (heap 1024 29194 3379))
)



[-- Attachment #2: hippie-exp-el-patch-20170626-tom.patch --]
[-- Type: text/x-diff, Size: 1490 bytes --]

*** hippie-exp.el	2017-06-26 12:50:18.923557011 +0200
--- hippie-exp-patched.el	2017-06-26 12:52:12.731563202 +0200
***************
*** 926,932 ****
  string).  It returns t if a new expansion is found, nil otherwise."
    (let ((expansion ())
  	(buf (current-buffer))
! 	(orig-case-fold-search case-fold-search))
      (if (not old)
  	(progn
  	  (he-init-string (he-dabbrev-beg) (point))
--- 926,934 ----
  string).  It returns t if a new expansion is found, nil otherwise."
    (let ((expansion ())
  	(buf (current-buffer))
! 	(orig-case-fold-search case-fold-search)
!     (heib hippie-expand-ignore-buffers)
!     (heob hippie-expand-only-buffers))
      (if (not old)
  	(progn
  	  (he-init-string (he-dabbrev-beg) (point))
***************
*** 941,949 ****
  			(< he-searched-n-bufs hippie-expand-max-buffers)))
  	  (set-buffer (car he-search-bufs))
  	  (if (and (not (eq (current-buffer) buf))
! 		   (if hippie-expand-only-buffers
! 		       (he-buffer-member hippie-expand-only-buffers)
! 		     (not (he-buffer-member hippie-expand-ignore-buffers))))
  	      (save-excursion
  		(save-restriction
  		  (if hippie-expand-no-restriction
--- 943,951 ----
  			(< he-searched-n-bufs hippie-expand-max-buffers)))
  	  (set-buffer (car he-search-bufs))
  	  (if (and (not (eq (current-buffer) buf))
! 		   (if heob
! 		       (he-buffer-member heob)
! 		     (not (he-buffer-member heib))))
  	      (save-excursion
  		(save-restriction
  		  (if hippie-expand-no-restriction

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

only message in thread, other threads:[~2017-06-26 11:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-26 11:11 bug#27501: 24.5; hippie-expand-only-buffers not considered when buffer-local in 'try-expand-dabbrev-all-buffers Tom

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.