all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* help on text-properties
@ 2007-06-06  5:15 Yu,Gang
  2007-06-06  8:31 ` Kim F. Storm
  0 siblings, 1 reply; 4+ messages in thread
From: Yu,Gang @ 2007-06-06  5:15 UTC (permalink / raw)
  To: help-gnu-emacs


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

Hi all:
  I want to set text properties on a string, however, any time I get a nil
result after the (set|add)-text-properties call, the text is not properly
propetied.

 what's wrong??

I use emacs 22.1, here is the source code:

(defun show-paren-minibuffer (pair-point pos)
  "show the paren pair in the minibuffer, pos is current point , pair-point
is the point of the paren pair"
  (if (not (pos-visible-in-window-p pair-point))
      (let ((pair-line-number (line-number-at-pos pair-point))
        (pos-line-number (line-number-at-pos pos))
        show-string
        offset)
    (if (not (equal pair-line-number pos-line-number))
        (save-excursion
          (goto-line pair-line-number)
          (setq offset (- pair-point (line-beginning-position)))
          (setq show-string (buffer-substring (line-beginning-position)
(line-end-position)))
          (diag-pr (set-text-properties offset offset '(comment t face
highlight) show-string))
          (if (< (length show-string) 20)
          (setq show-string
            (concat
             (buffer-substring
              (- (line-beginning-position) 30)
              (- (line-beginning-position) 1))
             "\n"
             show-string
             "\n"
             (buffer-substring
              (+ (line-end-position) 1)
              (+ (line-end-position) 30)))))
          (message "%s" show-string))))))

and my diag-pr macro:

(defmacro diag-pr (exp)
  "print the expression result in the *scratch buffer"
  `(let ((tmp-diag-var ,exp))
     (print (list ',exp 'result 'is (list tmp-diag-var)) diag-buffer)
     tmp-diag-var))

in the diag-buffer, all resutls display "nil"

How can I sovle the problem?

thanks !!

-- 
YuGang

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

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <mailman.1619.1181106948.32220.help-gnu-emacs@gnu.org>]

end of thread, other threads:[~2007-06-06  9:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-06  5:15 help on text-properties Yu,Gang
2007-06-06  8:31 ` Kim F. Storm
     [not found] <mailman.1619.1181106948.32220.help-gnu-emacs@gnu.org>
2007-06-06  7:13 ` Thien-Thi Nguyen
2007-06-06  9:00   ` Yu,Gang

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.