unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* problem with tag-search while in outline-minor-mode
@ 2008-04-11 15:13 Joseph Wieber
  0 siblings, 0 replies; only message in thread
From: Joseph Wieber @ 2008-04-11 15:13 UTC (permalink / raw)
  To: bug-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 1017 bytes --]

 
Hello,
 
I didn't see this in the known issues, so I thought I should send a report. I apologize if this is already known. I use the following emacs version/hardware: GNU Emacs 21.4.1 (powerpc-ibm-aix5.1.0.0, X toolkit) of 2005-10-02 on pdslib53
 
The problem I am seeing is related to tag search. In my .emacs I am set up to enter into outline-minor-mode and hide-other when a c++ file is opened. When I have this enabled and I hit M - . (Meta dash dot) emacs hangs. If is remove the line that tells emacs to open all c++ files in outline-minor-mode all works fine. For my testing I open the same file, visit the same two tag files, and search for the same tag. I have attached my .emacs file(named dotEmacs; Windows...). 
 
If this is a bug that you would like more information to fix please contact me and I'll send of anything you need. I often have problems receiving email from the outside world at work so please cc my home email account jdwieber@gmail.com. 
 
Regards,
 
Joseph D. Wieber.
 
 

[-- Attachment #1.2: HTML --]
[-- Type: text/html, Size: 1463 bytes --]

[-- Attachment #2: dotEmacs --]
[-- Type: application/octet-stream, Size: 5393 bytes --]


(setq load-path
      (append (list nil "~/Emacs")
	      load-path))

(add-hook 'text-mode-hook 'turn-on-auto-fill)
(setq next-line-add-newlines nil)
(setq c-auto-newline t)
(set-cursor-color "HotPink")
(set-background-color "black")
(set-foreground-color "lemon chiffon")

;;(setq tags-table-list '("~/quest/install/tics/common" "~/quest/install/tics/include" "~/quest/install/tics/master"))
(load "python-mode.elc")

(require 'mmm-mode)
(mmm-add-classes
 '((embedded-sql
    :submode sql-mode
    :front "EXEC SQL"
    :back ";")))
(setq-default mmm-global-mode t)
(mmm-add-mode-ext-class 'c++-mode "\.pc$" 'embedded-sql)
(mmm-add-mode-ext-class 'c++-mode "\.sqc$" 'embedded-sql)
(mmm-add-mode-ext-class 'c++-mode "\.pcp$" 'embedded-sql)
(setq-default mmm-never-modes
	      (append '(ediff-mode) '(text-mode) mmm-never-modes))

(setq auto-mode-alist
     (append
      '(("\.pcp$" . c++-mode)
	 ("\.sqc$" . c++-mode)
	 ("\.h$" . c++-mode)
	 ("\.ebrowse$" . ebrowse-tree-mode))
      auto-mode-alist))

;; Set up the keyboard so the delete key on both the regular keyboard
;; and the keypad delete the character under the cursor and to the right
;; under X, instead of the default, backspace behavior.
(global-set-key [delete] 'delete-char)
(global-set-key [kp-delete] 'delete-char)

(global-set-key "\C-cs" 'speedbar)
(global-set-key "\C-c\C-s" 'speedbar-get-focus)
(global-set-key "\C-cg" 'goto-line)
(global-set-key "\C-c\C-r" 'toggle-read-only)
(global-set-key "\r" 'newline-and-indent)

(setq make-backup-files nil)
(column-number-mode 1)
(tool-bar-mode -1)

(cond ((fboundp 'global-font-lock-mode)
       ;; Turn on font-lock in all modes that support it
       (global-font-lock-mode t)
       ;; Maximum colors
       (setq font-lock-maximum-decoration t)))


(when window-system
  ;; enable wheelmouse support by default
  (mwheel-install)
  ;; use extended compound-text coding for X clipboard
  (set-selection-coding-system 'compound-text-with-extensions))

(custom-set-variables
  ;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
 '(c++-mode-hook (quote (outline-minor-mode hide-other)))
 '(c-basic-offset 3)
 '(c-block-comment-prefix "*")
 '(c-cleanup-list (quote (empty-defun-braces defun-close-semi scope-operator space-before-funcall)))
 '(c-electric-pound-behavior (quote (alignleft)))
 '(c-hanging-braces-alist (quote ((brace-list-open before after) (brace-entry-open before after) (substatement-open before after) (block-close before after) (extern-lang-open before after) (inexpr-class-open before after) (inexpr-class-close before after) (class-open before after) (class-close before after))))
 '(c-hanging-colons-alist (quote set-from-style))
 '(c-ignore-auto-fill nil)
 '(c-indent-comments-syntactically-p t)
 '(c-style-variables-are-local-p nil)
 '(case-fold-search t)
 '(current-language-environment "English")
 '(default-input-method "latin-1-prefix")
 '(frame-background-mode (quote dark))
 '(global-font-lock-mode t nil (font-lock))
 '(global-hl-line-mode nil nil (hl-line))
 '(hl-line-face (quote highlight))
 '(mmm-delimiter-mode (quote c++-mode))
 '(mmm-submode-decoration-level 2)
 '(show-paren-mode t nil (paren))
 '(show-trailing-whitespace nil)
 '(speedbar-frame-parameters (quote ((minibuffer) (width . 40) (border-width . 0) (menu-bar-lines . 0) (tool-bar-lines . 0) (unsplittable . t))))
 '(speedbar-show-unknown-files t)
 '(speedbar-supported-extension-expressions (quote ("\\.vhdl?\\'" ".adb.dg" ".ads.dg" ".adb" ".ads" ".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?" ".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g" ".s?html" "[Mm]akefile\\(\\.in\\)?" ".pcp")))
 '(speedbar-verbosity-level 2)
 '(standard-indent 3)
 '(tab-always-indent t)
 '(transient-mark-mode t))

(custom-set-faces
  ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
 '(default ((t (:stipple nil :background "black" :foreground "PeachPuff3" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 80 :width normal :family "adobe-courier"))))
 '(font-lock-comment-face ((((class color) (background dark)) (:foreground "lime green"))))
 '(font-lock-constant-face ((((class color) (background dark)) (:foreground "Purple"))))
 '(font-lock-keyword-face ((((class color) (background dark)) (:foreground "Purple"))))
 '(font-lock-string-face ((((class color) (background dark)) (:foreground "red"))))
 '(font-lock-type-face ((((class color) (background dark)) (:foreground "Purple"))))
 '(font-lock-variable-name-face ((((class color) (background dark)) (:foreground "blue"))))
 '(highlight ((((class color) (background dark)) (:background "dark gray"))))
 '(mmm-default-submode-face ((t (:background "black" :foreground "Cyan"))))
 '(mode-line ((((type x w32 mac) (class color)) (:background "bisque" :foreground "black" :box (:line-width -1 :style released-button) :weight bold))))
 '(mouse ((t (:background "black" :foreground "yellow"))))
 '(tool-bar ((((type x w32 mac) (class color)) (:background "grey75" :foreground "black" :box (:line-width 1 :style released-button)))))
 '(vhdl-font-lock-enumvalue-face ((((class color) (background dark)) (:foreground "cyan")))))





[-- Attachment #3: Joseph Wieber.vcf --]
[-- Type: text/plain, Size: 151 bytes --]

BEGIN:VCARD
VERSION:2.1
X-GWTYPE:USER
FN:Joseph Wieber
EMAIL;WORK;PREF;NGW:Joseph.Wieber@travimp.com
N:Wieber;Joseph
TEL;WORK:7094
END:VCARD


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

only message in thread, other threads:[~2008-04-11 15:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-11 15:13 problem with tag-search while in outline-minor-mode Joseph Wieber

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).