~ubuntu-branches/ubuntu/karmic/emacs-snapshot/karmic

« back to all changes in this revision

Viewing changes to src/textprop.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-04-05 09:14:30 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20090405091430-kdbnqkmwgbtzraxs
Tags: 1:20090320-1ubuntu1
upload to jaunty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Interface code for dealing with text properties.
2
2
   Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3
 
                 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 
3
                 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4
4
 
5
5
This file is part of GNU Emacs.
6
6
 
57
57
/* Visual properties text (including strings) may have.  */
58
58
Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
59
59
Lisp_Object Qinvisible, Qread_only, Qintangible, Qmouse_face;
 
60
Lisp_Object Qminibuffer_prompt;
60
61
 
61
62
/* Sticky properties */
62
63
Lisp_Object Qfront_sticky, Qrear_nonsticky;
883
884
      if (NILP (position))
884
885
        {
885
886
          if (NILP (limit))
886
 
            position = make_number (SCHARS (object));
 
887
            position = make_number (0);
887
888
          else
888
889
            {
889
890
              CHECK_NUMBER (limit);
2334
2335
  Qrear_nonsticky = intern ("rear-nonsticky");
2335
2336
  staticpro (&Qmouse_face);
2336
2337
  Qmouse_face = intern ("mouse-face");
 
2338
  staticpro (&Qminibuffer_prompt);
 
2339
  Qminibuffer_prompt = intern ("minibuffer-prompt");
2337
2340
 
2338
2341
  /* Properties that text might use to specify certain actions */
2339
2342